Change the default open attachment location in Outlook

Posted by Steve Wiseman on June 24, 2009 with 1 Comments

I recently received a question from a reader:

Hi Steve,

I recently read your article about changing the default save location for MS Outlook 2003 at http://www.intelliadmin.com/blog/index.php/2007/09/set-default-folder-for-attachments-in-outlook-2003/

It is very informative; however, it was almost what I was looking for. I would like to change the default OPEN location, so I was wondering if you know how that would be accomplished.

Very good question. It could be useful to have Outlook open to the folder of your choice when clicking on the attachment button – especially if you send lots of them every day.

The default option is that it opens to the documents folder:

Outlook Default Open Folder

The bummer is that after lots of research, I have come to the conclusion that the only way to change this is to change the location of your “My Documents” folder

You can change the folder location by right clicking it on your desktop, and going to properties. Or you can dig into the registry down to this key:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders

Find the “Personal” value, and change it to your folder of choice. From that point on Outlook will default to that folder when you go to attach a file. The side effect of this is that it changes the location of your “My Documents” folder – so this is a trade off you will need to consider.

That is the only way I know to change it. If anyone else has a better method, please email me (support@intelliadmin.com) or drop a line in the comments.

Remote Control 4.0 Released

Posted by Steve Wiseman on June 19, 2009 with 0 Comments

This is a quick one – The final version of Remote Control 4.0 has been released. Current customers with an upgrade protection license should receive their email within 24 hours. If you did not, please send an email to support@intelliadmin.com and we will take care of you as soon as possible.

Here are the screenshots:
http://www.intelliadmin.com/RemoteControl4_ScreenShots.htm

And a link to the trial download:
setupex.exe

Write a script to find and delete a file

Posted by Steve Wiseman on June 17, 2009 with 3 Comments

I distributed a test version of Remote Control 4.0 across our network last week, and since it was a special debug version, it created a large number of files named debuglog.dat.

I wanted an easy way to find and delete these using a batch file. I researched and was able to take parts of other scripts to build what I needed.

The first step was to identify all of the local drives on the system. I know that this is available in the registry key HKEY_LOCAL_MACHINE\System\MountedDrives

Using the reg command, I can get this by calling:

reg query HKLM\SYSTEM\MountedDevices

And using the find command I can pull out only the devices with dos drive letters:

reg query HKLM\SYSTEM\MountedDevices^|find /i “\DosDevices\”

Still, this is not enough for our task. Here is what we get when calling the script:

Find and Delete

Lots of binary data we do not need

We can take this output, and feed it through the “for” command, and call a function for each drive letter:

for /f “tokens=1″ %%x in (‘reg query HKLM\SYSTEM\MountedDevices^|find /i “\DosDevices\”‘) do echo %%x

Now, we get a list of the drives, minus the binary data. We can use that to call a function that will parse out the \DosDevices\

for /f %34tokens=1%34 %%x in (‘reg query HKLM\SYSTEM\MountedDevices^%7cfind /i %34\DosDevices\%34′) do call :D eleteFileSub %%x
goto endScript :D eleteFileSub
set LocalDrive=%1
set LocalDrive=%LocalDrive:~-2%
echo %Drive%
goto endScript
:endScript

With that script, we get a complete list of local drives. Hmm…starting to look good:

Local Drive Letters

Now. What next? Well, we want to search each local drive for our file, and then delete it. For safety reasons, I am only going to echo the file names – I want you to think real hard before doing this..since the wrong move and you could wipe out important files.

Again, the ‘for’ command is a great way to do this:

for /f “tokens=1 delims=*” %%z in (‘dir “LocalDrive%\SomeFile.txt” /s /b’) do echo del “%%z”

Replace SomeFile.txt with the file you want to remove.

This will pull out the filename in a full directory search of the specified drive and echo it. If you want to actually delete the file you will need to remove the “echo”:

for /f “tokens=1 delims=*” %%z in (‘dir “LocalDrive%\SomeFile.txt” /s /b’) do echo del “%%z”

Now, putting the whole thing together:

@echo off
for /f “tokens=1″ %%x in (‘reg query HKLM\SYSTEM\MountedDevices^|find /i “\DosDevices\”‘) do call :deleteSub %%x
goto endSub
:deleteSUb
set LocalDrive=%1
set LocalDrive=%LocalDrive:~-2%
for /f “tokens=1 delims=*” %%z in (‘dir “%Drive%\Some File.txt” /s /b’) do echo del “%%z”
goto endSub
:endSub

Text version here if you have copy-paste issues

Make sure you do lots of testing before you pull the trigger and remove the “echo” statement. I wouldn’t want you to blow away the wrong files :)

Remote Control 4.0 Beta RC4 and USB Disabler Pro

Posted by Steve Wiseman on June 15, 2009 with 6 Comments

RC4 has been released (More info about 4.0 can be found here). A few of you complained about performance issues when connecting to larger screens. This is because in 4.0 we fully refresh the screen for each update. This makes the resized window look smoother. Without the full refresh there are slight rounding errors that create artifacts on the screen.

Since we want to give you the choice of performance over small artifacts we have added a checkbox that lets you turn it on or off:

Connection Settings Update

We have also worked on other performance issues. Please give RC4 a spin and tell us what you find:

http://www.intelliadmin.com/setupex_beta.exe

As usual, send bug reports to support@intelliadmin.com

We are ahead of schedule, and if RC4 looks good we will release before our June 27th date.

While we are talking about betas, we are about to start testing USB Disabler Pro. It will allow you to restrict access to USB storage devices (Flash drives, External Hard Drives, Etc). It goes beyond our free product – you can set specific windows groups or users that are allowed to access drives. Even if a user is blocked, you can login as an administrator and grant permission for a specific device while blocking all others.

Sign up for the USB Disabler Pro Beta

Our first beta release will be next week.

Filed Under: Windows

Waterproof Computer

Posted by Steve Wiseman on June 13, 2009 with 2 Comments

I have been digging through my photos from Computex in Taipei, Taiwan. One of the coolest things I saw while I was there…a waterproof computer (Yes, I am a geek).

Waterproof laptop

Back in 2006 I wrote about a laptop that NEC was working on. This is the first time I actually got to see something like it in person.

For the full effect, I took a video of it in action:

I think this would work great for me, since I am constantly knocking my drink on to my keyboard every time I answer the phone :)

Filed Under: Computex, Waterproof

Remote Control Beta RC2 Released

Posted by Steve Wiseman on June 5, 2009 with 4 Comments

I can’t thank everyone enough for their bug reports and suggestions. We have fixed every bug submitted, and implemented most of the feature requests.

Keep sending them to support@intelliadmin.com or write a comment in this blog entry

One of the ideas was to put the edit computer list right on the find form. Here is what it looks like:

Remote Control Beta 4 RC2

In addition, many of you complained about the command bar at the top of the viewer window. It keeps getting in the way of stuff at the top:

Remote Control Beta 4 RC2 Command Panel

Now it hides a little further into the top of the window, and you must hover over it for 1.5 seconds before it will show.

There are lots of other fixes. Here is the list:


-If you picked an action menu item, and then pressed space..it would bring the action menu back up (fixed)

-Computer names not always pulled properly from remote host (Fixed)

-Refresh menu added to action list (You must upgrade to server RC2 for this to work)

-Calling from the command line had a file not found error (Fixed)

-Command panel is pinned by default on initial client install

-The command panel when hidden more when retracting

-It takes 1.5 seconds before the command panel will show when on auto-hide mode.

-Import, Export, and Edit computers added to find window

-1/1/1900 is not a valid date error, and crashes on non-english versions of windows (Fixed)

-Problem with black areas on the screen not being updated (fixed)

-JPG now includes date and time for quick saving

For a limited time – If you purchase Remote Control 3.2 today, you will get the 4.0 upgrade for free. This will cost you less, since we will increase the price when 4.0 is released.

Now for the download links. We have an updated distribution tool:

Distribution Tool

An updated MSI file for those who want to use group policy:

Setup_beta.msi

And the beta download:

Beta Install File

One final note. The command panel will show the current build number. When testing make sure you update the server, and the client. If you are connecting to a beta 1 or older server it will say “Unknown Build Date” (Note that this info will be replaced with the remote computer name on the final release). If everything is up to beta 2, then it will show a date. Make sure you uninstall everything before you install the new beta.

LED Cooling Fans

Posted by Steve Wiseman on June 3, 2009 with 4 Comments

I got a chance to visit the Computex computer show in Taipei, Taiwan.

I took some pics of the more interesting stuff I saw, and one of them was programmable cooling fans. These would be the cooling fans you put on the back of your computer, or inside to keep air moving. You can program them to put a message, or even run a program to display current RPMs.

Not really useful, but something you could throw into the mix when tricking out your machine.

Here is one of them showing the current RPMs

Computex Cooling Fan Display RPM

Another programmed to display a face – it is cut off because of the cycle rate difference between my camera and the fan…if you were looking at it, it would be a full face:

Computex Cooling Fan Display Face

The big daddy was a clock that had something different on each one:

(Click to see a really big version)
Cooling Fan Display Clock

Not sure where you can buy these, but the OEM website is:

http://www.fresh-tech.com.tw

I will post more pictures of other stuff I saw as I get them off my camera.

Filed Under: Computex, Cooling, Hardware, Windows

Clean boot into Windows 2008, and Vista

Posted by Steve Wiseman on June 1, 2009 with 5 Comments

I was troubleshooting a server yesterday and a came across an easy way to clean boot into Vista, or 2008. When I say clean boot I mean that Windows starts without any 3rd party services running.

To do it, startup MSCONFIG, (Start then run…type msconfig.exe)

Once it launches, move over to the services tab:

Windows 2008 Clean Boot Services

Then move down, and hide Microsoft services (We don’t want to disable those)

Windows 2008 Clean Boot Hide Microsoft

After you do that, click the “Disable Services” button on the right:

Windows 2008 Clean Boot Disable

Now click OK, and reboot. When Windows restarts, no 3rd party services will be running.

Once you have completed your troubleshooting you can reverse the process to turn them back on.

Please wait while we add your email address to our list

Join our Tips and Software Email List

Get free software, news, and tips
once a week by joining our email list
Enter your email address below

Just like you, we hate spam.

We promise to never sell, or spam your inbox

Thanks for joining our list, and have a great day!

Error adding address

There was an error adding your email address.
It might be because you are already on our list.
If this is not the case, please try again later. Thanks!