myselfidem Posted April 6, 2013 Posted April 6, 2013 Many thanks for the Fix!Keep your awesome work! Regards
maxXPsoft Posted April 8, 2013 Author Posted April 8, 2013 (edited) What is this sleep you are talking about?When I was trying to get it to pause and work with powershell it was a powershell command Start-Sleep 5 or like that.Is easier to use Timeout 5. Try the .wim info and it times out Edited April 8, 2013 by maxXPsoft
myselfidem Posted May 6, 2013 Posted May 6, 2013 I see inside .wimrightclick-Install.reg a key file is missing:[HKEY_CLASSES_ROOT\WIMfile\Shell\.Wim\command]@=- If this key doesn't exit TuneUp Utilities remove the key:[HKEY_CLASSES_ROOT\WIMfile\Shell\.Wim]And .wimrightclick is broken and doesn't work!Regards
maxXPsoft Posted May 6, 2013 Author Posted May 6, 2013 I see inside .wimrightclick-Install.reg a key file is missing:[HKEY_CLASSES_ROOT\WIMfile\Shell\.Wim\command]@=- If this key doesn't exit TuneUp Utilities remove the key:[HKEY_CLASSES_ROOT\WIMfile\Shell\.Wim]And .wimrightclick is broken and doesn't work!RegardsThere should be no [HKEY_CLASSES_ROOT\WIMfile\Shell\.Wim\command]only the [HKEY_CLASSES_ROOT\WIMfile\Shell\.Wim] where it creates icon for .wimI checked the downlad zip and it is correct
myselfidem Posted May 6, 2013 Posted May 6, 2013 (edited) Please look at the image and remember you added this subkey previously!Comment inside the registry file .wimrightclick-Install.reg; 6/28/12 Fix minor issue with Shell\.Wim\command found by myselfidemWorks for me adding this subkey but doesn't work without this subkey after launching TuneUp Utilities.Regards*Edit: your comment about this question here:http://www.msfn.org/board/topic/150275-add-right-click-wim-windows-7/page__view__findpost__p__1002502 Edited May 6, 2013 by myselfidem
maxXPsoft Posted May 7, 2013 Author Posted May 7, 2013 Please look at the image and remember you added this subkey previously!yes I went back and looked at the notes and post. I removed somehow but I'll add back, just add yourself for now.
maxXPsoft Posted May 15, 2013 Author Posted May 15, 2013 Run this new WIMrightclick_Uninstall.reg first; 05/15/2013; Added shutdown anti-virus(MSE for me) with Autoit to speedup most things with this. Can add any program like AVG, Avast, Norton.; Create a reg/script for your anti-vir and i'll add to download.; Cleaned up reg entries adding like Max.WimInfo and shorten. Removed sub-menus since they take up 1 item on a maximum 16 list.Disabling MSE to inject updates 94 Updates Add-Package Start: 12:05:52.18 Finish: 12:24:10.20Before was an hour and 20 minutesCleanup RegistryNew WIMrightclickIf you do use Disabling Anti-Virus place the _MSEstop.exe somewhere and edit the WIMrightclick_ Install.reg here cmd /c start /wait D:\\_Backup\\_REG\\WIMrightclick\\_MSEstop.exe_MSEstop.au3 includedIncludes WIMrightclick_ Install_No_MSE.reg if you don't want the Disabling Anti-Virus
Octopuss Posted June 22, 2013 Posted June 22, 2013 Max, could you please rewrite the mount image xyz command to make it work with path with spaces in it please? I tried numerous combinations of additional \" but without any luck. It probably works completely differently with Powershell, which I have exactly zero knowledge of.
maxXPsoft Posted June 23, 2013 Author Posted June 23, 2013 Max, could you please rewrite the mount image xyz command to make it work with path with spaces in it please? I tried numerous combinations of additional \" but without any luck. It probably works completely differently with Powershell, which I have exactly zero knowledge of.MrJinge wrote that part of the script and I can't change it either.Perhaps he knew as I do using dism.exe it don't like blank spaces in commands either and things foul up.
Octopuss Posted June 23, 2013 Posted June 23, 2013 (edited) Oh. Do you have an older version without any Powershell in it then?Also, just a cosmetic thing, but wouldn't you consider rewriting the file so commands are in the order they appear in the menu? Currently it can be pretty hard to find the appropriate lines if you want to change the whole thing a little. Edited June 23, 2013 by TheWalrus
maxXPsoft Posted June 23, 2013 Author Posted June 23, 2013 (edited) Oh. Do you have an older version without any Powershell in it then?Powershell does a get-wiminfo and creates the list we have now. I see "" around it but as I said dism don't play well with blank spacesThe old way had a line for each image and it was long and took up several slots in a list can only have 16 thingsUploaded with ImageShack.usI used this@="cmd /c C:\\Windows\\System32\\Dism /mount-wim /wimfile:\"%1\" /index:1 /mountdir:C:\\zMountDir" Edited June 23, 2013 by maxXPsoft
maxXPsoft Posted August 8, 2013 Author Posted August 8, 2013 (edited) ; 08/8/2013; Added reg scripts for Windows 8.1 with Windows Assessment and Deployment Kit (Windows ADK) for Windows 8.1 installed for both amd64 and x86; C:\Program Files (x86)\Windows Kits\8.1\Assessment and Deployment Kit; (ADK) http://www.microsoft.com/en-us/download/details.aspx?id=39306WIMrightclick_ Install_8.1_amd64.regWIMrightclick_ Install_8.1_x86.regDism no longer works from Windows 7 System32 on Windows 8.1 Preview. You will have to use the (ADK) from Windows 8.1.It is backwards compatible so no problem using on your Windows 7 imagesLink in my Sig or first Post Edited August 8, 2013 by maxXPsoft
MrJinje Posted November 20, 2013 Posted November 20, 2013 (edited) Hey Max, found a newer method to get feedback during scripts. Won't work in W7, but does work in W8 and above. Basically the Out-Gridview has a new parameter (-passthru) in Powershell 3.0/4.0 which adds an OK/Cancel to the window. Allows for multiple item selection and directs input back into the pipeline. Been around since last year, but I never used it 'til recently.Here is an example, it opens up a list of processes, allows you to choose a single or multiple processes, collects their names and loops through closing all the highlighted items. Probably be easy enough to drop the Get-WimInfo in place of the "Get-Process | Select-Object -Property Id,ProcessName" part of the command and the mounting bits later to generate a little GUI action.http://forums.mydigitallife.info/threads/50445-Windows-8-1-Task-Manager-Problem?p=843819&viewfull=1#post843819$KILLPROCESS = (Get-Process | Select-Object -Property Id,ProcessName | Out-GridView -passthru -Title "Wise Guy Process Killer").ProcessName;Get-Process $KILLPROCESS | ForEach-Object -Process {Stop-Process -Id $_.ID}# Edited November 20, 2013 by MrJinje
maxXPsoft Posted November 21, 2013 Author Posted November 21, 2013 (edited) 1 Edited November 21, 2013 by maxXPsoft
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now