hei guys, is there a way to create this "show desktop" button in the bottom right corner of the screen/taskbar like in windows 7/8 thanks
exactly, extreme right of the bar. but for the icon, the link was this in 7 and 8, not tested on 10 but you can try Code: %windir%\explorer.exe shell:::{3080F90D-D7AD-11D9-BD98-0000947B0257} EDIT : just tested, it works. Create a shorcut with this link and it does the job
help please someone can help: post number #582 question number 2: how i can add sidebar gadgets? (i found a dir about here: C:\Users\(User Name)\AppData\Local\Microsoft\Windows Sidebar) Thank you so much to everyone who want help me!
The link is already present in w10 just like in the previous windows, it is in the quicklaunch folder. Just enable quicklaunch or open the folder and copy the link somewhere else.
another question sorry guys, i've another question. I'm on win10 pro x64 but i've problems with jump list. I can pin only 13 links. Option from task and menu properties like win7 is disappeared I found a solution on web for increase the number from the regedit: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced value dword32bit "Start_JumpListItems" and add a number between 0 to 60 but it doesn't works. Damn, is it a win10 bug or what?
Keep your tweaks and customizations after a reboot or Windows Update A problem I had ran into was that some of the registry tweaks would require me to re-run them either after a reboot or after a Windows Update (the all folders reappearing in Explorer is a good example). So by using Task Scheduler I can have it set to launch my bat file that reimports my registry tweaks every time I login from a reboot, or just login from a logoff. And also do it with elevated Admin privileges and without an UAC prompt. Create a bat file that imports your reg tweaks, eg. Code: REG import C:\PATH\TO\TWEAKS1.reg REG import C:\PATH\TO\TWEAKS2.reg Name it something like Tweaks.bat and save it somewhere,like maybe C:\Windows\HiddenPr0nStash or whatever Next create a new text file and insert the following into it: Code: <?xml version="1.0" encoding="UTF-16"?> <Task version="1.4" xmlns="h t t p :// schemas. microsoft. com / windows/2004/02/mit/task"> <RegistrationInfo> <Date>2015-07-29T00:00:00.000000</Date> <Author>Administrator</Author> <URI>\WinTweaks</URI> </RegistrationInfo> <Triggers> <LogonTrigger> <Enabled>true</Enabled> </LogonTrigger> </Triggers> <Principals> <Principal id="Author"> <LogonType>S4U</LogonType> <RunLevel>HighestAvailable</RunLevel> </Principal> </Principals> <Settings> <MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy> <DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries> <StopIfGoingOnBatteries>false</StopIfGoingOnBatteries> <AllowHardTerminate>true</AllowHardTerminate> <StartWhenAvailable>false</StartWhenAvailable> <RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable> <IdleSettings> <StopOnIdleEnd>true</StopOnIdleEnd> <RestartOnIdle>false</RestartOnIdle> </IdleSettings> <AllowStartOnDemand>true</AllowStartOnDemand> <Enabled>true</Enabled> <Hidden>false</Hidden> <RunOnlyIfIdle>false</RunOnlyIfIdle> <DisallowStartOnRemoteAppSession>false</DisallowStartOnRemoteAppSession> <UseUnifiedSchedulingEngine>true</UseUnifiedSchedulingEngine> <WakeToRun>false</WakeToRun> <ExecutionTimeLimit>PT72H</ExecutionTimeLimit> <Priority>7</Priority> </Settings> <Actions Context="Author"> <Exec> <Command>C:\PATH\TO\Tweaks.bat</Command> </Exec> </Actions> </Task> Remove the spaces from "h t t p :// schemas. microsoft. com / windows/2004/02/mit/task"> since I have too low a post count Then Change <Command>C:\PATH\TO\Tweaks.bat</Command> to point to your actual bat file that has your reg imports. Then save it as something.xml Then either fire up Task Scheduler and import it in or better yet from a command prompt: schtasks.exe /Create /XML "C:\PATH\TO\something.xml" /tn WhatEverYouWantToNameIt
Anyone have the info about what the option to disable the automatic HWID registration with Microsofts servers was? I know it was in one of these threads but can't find it anymore
hey guys, just removed some apps also the photo app now windows open pictures in paint, not a big problem but cant do diashow i just readed days ago that there is a way to enable win 7 photo viewer (you know what i mean) would be awesome if someone can post it how to do thanks
It's just for testing, I don't want M$ to block my machines HWID just because I make allot of reinstalls...
create a *.bat, execute with admin rights Code: Reg.exe add "HKCU\Software\Classes\.jpg" /ve /t REG_SZ /d "PhotoViewer.FileAssoc.Tiff" /f Reg.exe add "HKCU\Software\Classes\.jpeg" /ve /t REG_SZ /d "PhotoViewer.FileAssoc.Tiff" /f Reg.exe add "HKCU\Software\Classes\.gif" /ve /t REG_SZ /d "PhotoViewer.FileAssoc.Tiff" /f Reg.exe add "HKCU\Software\Classes\.png" /ve /t REG_SZ /d "PhotoViewer.FileAssoc.Tiff" /f Reg.exe add "HKCU\Software\Classes\.bmp" /ve /t REG_SZ /d "PhotoViewer.FileAssoc.Tiff" /f Reg.exe add "HKCU\Software\Classes\.tiff" /ve /t REG_SZ /d "PhotoViewer.FileAssoc.Tiff" /f Reg.exe add "HKCU\Software\Classes\.ico" /ve /t REG_SZ /d "PhotoViewer.FileAssoc.Tiff" /f Reg.exe add "HKCR\Applications\photoviewer.dll\shell\open" /v "MuiVerb" /t REG_SZ /d "@photoviewer.dll,-3043" /f Reg.exe add "HKCR\Applications\photoviewer.dll\shell\open\command" /ve /t REG_EXPAND_SZ /d "%%SystemRoot%%\System32\rundll32.exe \"%%ProgramFiles%%\Windows Photo Viewer\PhotoViewer.dll\", ImageView_Fullscreen %%1" /f Reg.exe add "HKCR\Applications\photoviewer.dll\shell\open\DropTarget" /v "Clsid" /t REG_SZ /d "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}" /f Reg.exe add "HKCR\Applications\photoviewer.dll\shell\print\command" /ve /t REG_EXPAND_SZ /d "%%SystemRoot%%\System32\rundll32.exe \"%%ProgramFiles%%\Windows Photo Viewer\PhotoViewer.dll\", ImageView_Fullscreen %%1" /f Reg.exe add "HKCR\Applications\photoviewer.dll\shell\print\DropTarget" /v "Clsid" /t REG_SZ /d "{60fd46de-f830-4894-a628-6fa81bc0190d}" /f