Jump to content

If #RequireAdmin FileExists() returns 0 for mapped drives


Recommended Posts

When you use #RequireAdmin, the script is restarted as an administrator account. Which means that it won't have the same drives mapped as the current user. If parts of your script require escalating the credentials used to run it, then you might have to use separate scripts and use RunAs to run them.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

; Check, and map drive, if needed
If Not DriveMapGet("I:") = $sDrive Then
DriveMapDel("I:")
If Not DriveMapAdd("I:", $sDrive, 8, $username, $password) Then MsgBox(4096, "Couldn't Map I:",$sDrive )
EndIf

Set $sDrive = the share you want to setup

only if you don't mind mapping in the admin context

Edited by jdelaney
IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
Link to comment
Share on other sites

Thanks BrewManNH and jdelaney for helping out - guess I need some lessons in mapping and ownership.

Some background if I may. I have a compiled script that has been running off a USB flash drive for a number of years quite happily under Windows XP, calling Truecrypt to handle decrypting my data on the flash drive and then backing up my changed files to an encrypted volume on the local PC's hard drive, and to a network drive mapped to Y:, before I remove the flash drive.

I have recently upgraded my PCs to Windows 7 (only one administrator account) and because Truecrypt needs admin rights to load it's driver I had to add in #RequireAdmin which has caused the mapped Y: drive to be invisible to my app.

@BrewManNH - you say "the script is restarted as an administrator account. Which means that it won't have the same drives mapped as the current user" but the current user is an adminstarator account?

@jdelaney - I can map another drive letter to access my network drive for the duration of the script as you suggest but it doesn't seem right that I have to do this extra work.

Link to comment
Share on other sites

Try this on your system, change the H: to whatever drive you're checking. Then comment out the #RequireAdmin, and run it again. You'll see you get different results, even as an administrator, it's just how things work.

#RequireAdmin
MsgBox(262144,'Debug line ~' & @ScriptLineNumber,'Selection:' & @lf & 'DriveMapGet("H:")' & @lf & @lf & 'Return:' & @lf & DriveMapGet("H:")) ;### Debug MSGBOX

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Now I really don't understand! Tried what you suggested and expected different results (basicly it's the same as the code in my original post) but I got:

Selection:

DriveMapGet("Y")

Return:

\\MYBOOKWORLD\Public

whether #RequireAdmin was commented out or not. Somehow I've done something to my system to 'fix' my problem - if only I knew what!

Reset my PC, then I got different results as expected, i.e Return: nothing if #RequireAdmin is in

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...