shawnmstout Posted July 24, 2009 Posted July 24, 2009 say the system drive is f instead of c, what is the variable i use to setup just the system drive letter?
MDCT Posted July 24, 2009 Posted July 24, 2009 (edited) I don't know if there's special macro for it, but you could use @SystemDir to get system32 directory, then use StringLeft to get the first character, which is the drive letter. Where's my manner, welcome to the forum! Since this is your first post. Try this: $System32Dir=@SystemDir $SystemDriveLetter=Stringleft($System32Dir,1) msgbox(0,0,'System drive letter is: ' & $SystemDriveLetter) Edited July 24, 2009 by MDCT
shawnmstout Posted July 24, 2009 Author Posted July 24, 2009 actually i figured it out but thanks for replying $drive = EnvGet("systemdrive"); Sets the System Drive for the Customer Computer
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now