Jump to content

thedexmonster

Member
  • Posts

    18
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About thedexmonster

thedexmonster's Achievements

0

Reputation

  1. I am attempting to modify %ProgramFiles% and %ProgramFiles(x86)% definitions as well as a few minor directories during setup. What I am not sure of is where or when to apply this so windows copies the least amount of files to the default locations. I plan on using registry entries like the following. If I have to, I will write a script that finds and replaces any registry entries already modified and use the results of the script to move those files to their new locations. Any guidance is greatly appreciated! Comments also!! [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Environment] "CSIDL_PROGRAM_FILES"="F:\\Program Files\\" "CSIDL_PROGRAM_FILESX86"="F:\\Program Files (x86)\\" "AllUsers"="F:\\Users" [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment] "CSIDL_PROGRAM_FILES"="F:\\Program Files\\" "CSIDL_PROGRAM_FILESX86"="F:\\Program Files (x86)\\" "AllUsers"="F:\\Users" [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion] "CommonFilesDir"="F:\\Program Files\\Common Files" "CommonFilesDir (x86)"="F:\\Program Files (x86)\\Common Files" "CommonW6432Dir"="F:\\Program Files\\Common Files" "ProgramFilesDir"="F:\\Program Files" "ProgramFilesDir (x86)"="F:\\Program Files (x86)" "ProgramW6432Dir"="F:\\Program Files" [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders] "Common Desktop"="F:\\Users\\All Users\\Desktop" "Common Start Menu"="F:\\Users\\All Users\\Start Menu" "CommonVideo"="F:\\Users\\All Users\\Media" "CommonPictures"="F:\\Users\\All Users\\Media" "Common Programs"="F:\\Users\\All Users\\Start Menu\\Programs" "CommonMusic"="F:\\Users\\All Users\\Media" "Common Administrative Tools"="F:\\Users\\All Users\\Start Menu\\Programs\\Administrative Tools" "Common Startup"="F:\\Users\\All Users\\Start Menu\\Programs\\Startup" "Common Documents"="F:\\Users\\All Users\\Documents" "OEM Links"="F:\\Users\\All Users\\Links" "Common Templates"="F:\\Users\\All Users\\Templates" [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders] "CommonPictures"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,\ 4d,00,65,00,64,00,69,00,61,00,00,00 "CommonMusic"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,4d,\ 00,65,00,64,00,69,00,61,00,00,00 "CommonVideo"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,4d,\ 00,65,00,64,00,69,00,61,00,00,00 "Common Start Menu"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,\ 00,53,00,74,00,61,00,72,00,74,00,20,00,4d,00,65,00,6e,00,75,00,00,00 "Common Programs"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,\ 53,00,74,00,61,00,72,00,74,00,20,00,4d,00,65,00,6e,00,75,00,5c,00,50,00,72,\ 00,6f,00,67,00,72,00,61,00,6d,00,73,00,00,00 "Common Startup"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,\ 53,00,74,00,61,00,72,00,74,00,20,00,4d,00,65,00,6e,00,75,00,5c,00,50,00,72,\ 00,6f,00,67,00,72,00,61,00,6d,00,73,00,5c,00,53,00,74,00,61,00,72,00,74,00,\ 75,00,70,00,00,00 "Common Templates"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,\ 00,54,00,65,00,6d,00,70,00,6c,00,61,00,74,00,65,00,73,00,00,00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList] "Public"=hex(2):25,00,55,00,73,00,65,00,72,00,73,00,25,00,5c,00,50,00,75,00,62,\ 00,6c,00,69,00,63,00,00,00 [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\ProfileList] "Public"=hex(2):25,00,55,00,73,00,65,00,72,00,73,00,25,00,5c,00,50,00,75,00,62,\ 00,6c,00,69,00,63,00,00,00 [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion] "CommonFilesDir"="F:\\Program Files (x86)\\Common Files" "CommonFilesDir (x86)"="F:\\Program Files (x86)\\Common Files" "CommonW6432Dir"="F:\\Program Files\\Common Files" "ProgramFilesDir"="F:\\Program Files (x86)" "ProgramFilesDir (x86)"="F:\\Program Files (x86)" "ProgramW6432Dir"="F:\\Program Files" [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\explorer\Shell Folders] "Common Desktop"="F:\\Users\\All Users\\Desktop" "Common Start Menu"="F:\\Users\\All Users\\Start Menu" "CommonVideo"="F:\\Users\\All Users\\Media" "CommonPictures"="F:\\Users\\All Users\\Media" "Common Programs"="F:\\Users\\All Users\\Start Menu\\Programs" "CommonMusic"="F:\\Users\\All Users\\Media" "Common Administrative Tools"="F:\\Users\\All Users\\Start Menu\\Programs\\Administrative Tools" "Common Startup"="F:\\Users\\All Users\\Start Menu\\Programs\\Startup" "Common Documents"="F:\\Users\\All Users\\Documents" "OEM Links"="F:\\Users\\All Users\\Links" "Common Templates"="F:\\Users\\All Users\\Templates" [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\explorer\User Shell Folders] "CommonPictures"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,\ 4d,00,65,00,64,00,69,00,61,00,00,00 "CommonMusic"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,4d,\ 00,65,00,64,00,69,00,61,00,00,00 "CommonVideo"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,4d,\ 00,65,00,64,00,69,00,61,00,00,00 "Common Start Menu"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,\ 00,53,00,74,00,61,00,72,00,74,00,20,00,4d,00,65,00,6e,00,75,00,00,00 "Common Programs"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,\ 53,00,74,00,61,00,72,00,74,00,20,00,4d,00,65,00,6e,00,75,00,5c,00,50,00,72,\ 00,6f,00,67,00,72,00,61,00,6d,00,73,00,00,00 "Common Startup"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,\ 53,00,74,00,61,00,72,00,74,00,20,00,4d,00,65,00,6e,00,75,00,5c,00,50,00,72,\ 00,6f,00,67,00,72,00,61,00,6d,00,73,00,5c,00,53,00,74,00,61,00,72,00,74,00,\ 75,00,70,00,00,00 "Common Templates"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,\ 00,54,00,65,00,6d,00,70,00,6c,00,61,00,74,00,65,00,73,00,00,00
  2. Appreciate your response! Turns out it was a problem with the config.js. But if that's the case it should have worked with an unmodified config file. I think I needed to clear the registry and fix the config. I didn't even know it made a registry entry... Thanks again. Thanks also to icnocop for convincing me to take another look at my config file. I think it was a dependency issue.
  3. Along with not being able to configure WPI. It is also no longer working within windows setup. Error 1: Out of memory at line: 125 When WPI Opens Picture Error 2: Stack overflow at line: 112 Changing Defaults Picture Error 3: Script error on line 57 at char 2: dxhWins is null or not an object url: alerts.js Clicking Exit Picture Can anyone help? I have spent a lot of hours configuring this to find out it no longer works. As far as I know nothing was done in between it working and not. I took a break to watch a movie on netflix. Came back to find it not opening.
  4. I'm not sure if WPI caused my problem or not. Maybe someone here will have some ideas for me? I successfully opened 8.1 maybe 20 times, added 44 programs to config. Now it will not stay open. I have tried a new source. If there is an error, it disappears faster than it can be seen. The same time it closes these are logged in event viewer: Failed extract of third-party root list from auto update cab at: <http://www.download.windowsupdate.com/msdownload/update/v3/static/trustedr/en/authrootstl.cab> with error: A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file. Failed auto update retrieval of third-party root list sequence number from: <http://www.download.windowsupdate.com/msdownload/update/v3/static/trustedr/en/authrootseq.txt> with error: This operation returned because the timeout period expired. Here's a video I recorded using Mona's Free Screen Recorder Addon: WPI.avi
×
×
  • Create New...