rbenner1184 Posted February 26, 2014 Share Posted February 26, 2014 Hello, I have been having an issue with copying files from the current user's application data directory and then copying this in a temporary directory. The confusing thing is that when I look at my log that i had generated it tells me that the copy was successful. I have had previous issues with the FileCopy and DirCopy functions in the past. any ideas why or how I can copy these files successfully. I included a line from my script to give an idea what i'm trying to achieve. I have to retain the current XML file from the user profile and then copy this in to a temp director, then after the install is complete i have to copy this back to the user profile location and overwrite the file. It seems pretty simple..so that's why I'm not understanding what the holdup is here. Any ideas? Thanks. $InstallDir = "C:\Admin\AppUpd\Hyperion Smart View for Office " ;##################################################### ;~Check OS version and file location of properties xml If @OSVersion = "WIN_7" Then FileMove(@AppDataDir & "\Oracle\SmartView\properties.xml", $installDir, $FC_OVERWRITE ) If @OSVersion = "WIN_XP" Then FileMove(@AppDataDir & "\Oracle\SmartView\properties.xml", $installDir, $FC_OVERWRITE ) ;Install The XML file that was copied prior to the install If @OSVersion = "WIN_7" Then FileMove("C:\Admin\AppUpd\Hyperion Smart View for Office\properties.xml", @AppDataDir & "\Oracle\SmartView\properties.xml", $FC_OVERWRITE) If @OSVersion = "WIN_XP" Then FileMove("C:\Admin\AppUpd\Hyperion Smart View for Office\properties.xml", @AppDataDir & "\Oracle\SmartView\properties.xml", $FC_OVERWRITE) Link to comment Share on other sites More sharing options...
Moderators JLogan3o13 Posted February 26, 2014 Moderators Share Posted February 26, 2014 I'm assuming you have tried #RequireAdmin at the top when testing on WIN7? "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum! Link to comment Share on other sites More sharing options...
BrewManNH Posted February 26, 2014 Share Posted February 26, 2014 Why do you use different lines for different OSs? The 2 lines are identical aren't they? 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 GudeHow 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 More sharing options...
rbenner1184 Posted February 26, 2014 Author Share Posted February 26, 2014 I'm assuming you have tried #RequireAdmin at the top when testing on WIN7? Yes you are correct. also i apologize the code should be for the first line If @OSVersion = "WIN_7" Then FileCopy(@AppDataDir & "\Oracle\SmartView\properties.xml", $installDir, $FC_OVERWRITE ) If @OSVersion = "WIN_XP" Then FileCopy(@AppDataDir & "\Oracle\SmartView\properties.xml", $installDir, $FC_OVERWRITE ) Link to comment Share on other sites More sharing options...
rbenner1184 Posted February 26, 2014 Author Share Posted February 26, 2014 Yea agree the 2 OS are kind of redundant. It was using the @UserProfileDir, but i still am not understanding why this will not copy from this directory. Link to comment Share on other sites More sharing options...
BrewManNH Posted February 26, 2014 Share Posted February 26, 2014 Does the destination path exist? 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 GudeHow 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 More sharing options...
rbenner1184 Posted February 26, 2014 Author Share Posted February 26, 2014 (edited) I just modified this to be s simple file copy and this is still not working. I am lost here #RequireAdmin #include <FileConstants.au3> $InstallDir = "C:\Admin\AppUpd\Hyperion Smart View for Office" DirCreate($InstallDir) If @OSVersion = "WIN_7" Then FileCopy("C:\Users\<User>\AppData\Roaming\Oracle\SmartView\properties.xml", $installDir, $FC_OVERWRITE ) If @OSVersion = "WIN_XP" Then FileCopy("C:\Documents and Settings\<User>\Application Data\Oracle\SmartView\properties.xml", $installDir, $FC_OVERWRITE ) Edited February 26, 2014 by rbenner1184 Posts merged - why post the same thing twice? Link to comment Share on other sites More sharing options...
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