i'm writing very usefull script in PS and it's my first script :D And the question is: how to get into system directory ex. C:\Recovery (Windows 7) ?

link|improve this question

67% accept rate
feedback

2 Answers

Run powershell as administrator and the

Set-location c:\recovery

or using the Set-Location alias (EDIT after comments)

cd c:\recovery
link|improve this answer
feedback
up vote 0 down vote accepted

I figured it out: just add -force and ofcorse run as Admin

link|improve this answer
In my systems (windows 7 or windows server 2008 R2) just need to run as administrator. Never used -force – Christian Nov 10 '11 at 7:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.