by jtstroup
10. February 2011 07:12
Not the best blog post ever, but it’s been a bit so…
I’m not a command line guru like some developers I meet. My education was all hands on in Visual Studio and not so much in the command line interface world. However as I gain experience I’m learning more and more.
With 64 bit systems you might be writing a bat file and you might want to generate your folder in the Program Files (x86). However to help make life easier for your user you could also create a symbolic link to the Program Files as well which is more or less a shortcut to your folder.
In my company we use Marimba to deploy to our shop servers. As stated above I wanted to create a symbolic link to my Program Files. Below is how I did it.
- Open Command Prompt (Admin). Start –> type “cmd” in search and hit Ctrl + Shift + Enter and it will open in Administrator mode, or hit Windows + R and type in “Cmd” either way works.
- Just to get a quick look at what MKLink. Type “mklink /?” to look at the help info.
- My command line looked like this: mklink /D “C:\Program Files\marimba” “C:\Program Files (x86)\marimba”
- The command line response was: “symbolic link created for C:\Program Files\marimba <<==>> c:\Program Files (x86)\marimba.”
- Browse to my C:\Program Files, and now I see a marimba folder that when I click it, takes me to my real URI location.
2c4cbce6-99a5-4e18-8630-2a10f3a8d007|1|5.0|96d5b379-7e1d-4dac-a6ba-1e50db561b04
Tags:
C# Development