Thursday, May 28, 2009
Monday, May 18, 2009
Windows Explorer opens a new window every time I click on a folder
I made the terrible mistake of installing Windows updates this morning. Got to work and found that ever single time I open a folder in explorer, it launches a new explorer window. Hunted around and didn't find a satisfactory solution. Tried to post my fix on stackoverflow, but the issue was closed. My solution:
- From command prompt, regedit.
- Go to HKEY_CLASSES_ROOT\Folder\shell\explore\command
- Change (Default) from: %SystemRoot%\Explorer.exe /seperate, /e,/idlist,%I,%L
- To: %SystemRoot%\Explorer.exe /e,/idlist,%I,%L
Sigh ... Windows ... bless its heart.
Friday, May 8, 2009
Short Paths
Digging into Jellyfish today. A step in their documentation says, "Please do not place these files into path that includes spaces. for example, "visual studio 2008". We are fixing this problem, but not yet fixed." I happen to use the default C:\Users\FirstName LastName\Documents\Visual Studio 2008\Projects and similar paths. I am not terribly keen on putting development projects in weird places that I will forget later. So a little poking around showed me how to make simple, short paths for all this stuff. You can jimmy with these scripts to suite your taste, but I ended up happiest with a new drive letter, B, under which I could easily get to my Visual Studio projects (B:\vs\Projects), SQL Server projects (B:\sql\Projects), documents (B:\doc), etc..
If you want to delete all this stuff:
- To get started, create a new folder to which you will map your new drive.
- (optional) Create a folder called link under C:\Users\FirstName LastName\.
- If you like, you can just use C:\Users\FirstName LastName\Documents, but I prefered to use a seperate folder so that it doesn't appear to clutter my real Documents folder with the new shortcuts (vs, sql, etc.)
- Open a command prompt with Administrator privileges and map your folder to a drive:
- subst B: "C:\Users\FirstName LastName\link"
- You will also want to open another command prompt without Administrator privileges and do this one same command there.
- Now create your links
- DeepZoom: mklink B:\dz /d "C:\Users\FirstName LastName\Documents\Expression\Deep Zoom Composer Projects"
- SQL Server: mklink B:\sql /d "C:\Users\FirstName LastName\Documents\SQL Server Management Studio"
- Visual Studio: mklink B:\vs /d "C:\Users\FirstName LastName\Documents\Visual Studio 2008"
- Documents: mklink B:\doc /d "C:\Users\FirstName LastName\Documents"
If you want to delete all this stuff:
- Open a command prompt (with or without Administrator privileges) and remove each of the links
- DeepZoom: rd B:\dz
- SQL Server: rd B:\sql
- Visual Studio: rd B:\vs
- Documents: rd B:\doc
- Open a command prompt with Administrator privileges and remove your mapped drive:
- subst /D B:
- You will also want to open another command prompt without Administrator privileges and do this one same command there.
- Delete the link folder, if you created it.
Subscribe to:
Posts (Atom)