Jump to content

DosProbie

Member
  • Posts

    1,047
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by DosProbie

  1. Second That Junior, No Issues here with 8.1 or with AeroGlass! ~DP
  2. = AeroGlass Backup & Restore Tool = File Download (rev. code) => https://copy.com/HZzzymF4j293 Info: - AeroGlass Backup & Restore performs five types of operations - backup, restore, enable or disable aero and launch AeroGlass website. - Easily backs up all of your AeroGlass activation files, license key and registry settings from your working setup. - Quickly restores AeroGlass back if you need to reinstall Windows 8.1 at a later date. - Tested and fully working with "Aero Glass for Win8.1 1.2.5" with Windows 8.1 OS. Advantages: - No need to manually downoad symbols again or reinstall AeroGlass every time you do a Windows reinstall. - Backs up your license key and all acivation files automatically for you quickly and easily. ~DP
  3. Not a bad app if you can get thru the minefield of browser hijacker crap such as: NetCrawl, Optimizer Pro, RegClean Pro, Storm Alerts, Safe Finder, and CouponDownloader. ~DP
  4. Glad you found it with Belarc, but TMI if you only want your key, The .vbs script from http://www.eightforums.com/tutorials/27129-product-key-find-windows-8-a.html (Option Five) also works as well. ~DP
  5. No, I never use a logon password since i like booting straight to the desktop and the same with Updates which have a way of messing up the system more that helping. ~DP
  6. This Winaero tool "Aero Taskbar Transparency" will also enable and disable opaque for the taskbar. http://www.mediafire.com/download/298miu2yhl529c8/Aero-Tranparent.rar ~DP
  7. Well there are some commercial Windows password unlockers but you should be able to remove or reset it manually here: http://www.isunshare.com/windows-8-password/windows-8.1-password-reset-when-forgot-it.html ~DP
  8. Thanks for the update Luxman. ~DP
  9. You can obtain your embedded oem 8.1 product key with Belarc Advisor or RWEverything. ~DP
  10. Thanks again Tihiy I love this app!, works great for me. ~DP
  11. You just repeated the same thing twice, did you mean Windows 8 to one ISO and Windows 7 ISO? ~DP Win AIO Maker => http://forums.mydigitallife.info/threads/29178-WinAIO-Maker-Professional-The-All-in-One-Windows-Setup-Solution
  12. Try and run your script manually with a pause at end before exit and see what error message you get. ~DP
  13. Edit: [solved] ~DP
  14. You need to number your Reg Adds for proper install sequence like so: ~DP Code Snippet: @echo off :: Unattended Install Deployment and Configurator for Windows(R) 7 Edition X64 :: Note: Installs applications at end of OOBE process/before first logon. ::POST INSTALLS-(root of cd/usb):: set key=hklm\software\microsoft\windows\currentversion\runonceex for %%i in (d e f g h i j k l m n o) do if exist %%i:\sources\install.wim set cdrom=%%i: reg add %key%\02 /V 1 /D "%cdrom%\apps\7zx64.msi /qn" /f reg add %key%\04 /V 1 /D "regedit /s cdrom%\apps\Twks7x64.reg" /f reg add %key%\06 /V 1 /D "%cdrom%\apps\Ownership.cmd" /f reg add %key%\08 /V 1 /D "Cscript.exe //nologo "%cdrom%\apps\Favs.vbs" /f reg add %key%\10 /V 1 /D "%cdrom%\apps\Silverlight.sfx.exe" /f reg add %key%\12 /V 1 /D "%cdrom%\apps\XnView_1.97.sfx.exe" /f reg add %key%\14 /V 1 /D "%cdrom%\apps\cleanup.cmd" /f reg add %key%\16 /V 1 /D "%cdrom%\apps\reboot.exe" /f
  15. Sorry, but no I don't I am sure you can control these via registry keys as well, maybe someone else may know. ~DP
  16. You do realize that this is a English Speaking Forum Don.t you? ~DP
  17. You can add this batch to the distribution folder %Windir%\Setup\Scripts from your FirstLogonCommands like so. ~DP Batch Script :: WPI.cmd ~DosProbie - June 2014@echo off:: SmartScreen Filter with IE 11:: Disable = 0 , Enable = 1reg add "hkcu\software\microsoft\internet explorer\phishingfilter" /v EnabledV9 /t reg_dword /d 0 /f>nulexitAutounattend.xml 64-bit <settings pass="oobeSystem"> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="NonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <Description>Windows Post Installs</Description> <Order>04</Order> <!-- ### WINDOWS POST INSTALL REGISTRY TWKS, SILENT APP INSTALLS, FAVS, PRE-ACTIVATES WITH GENUINE RETAIL KEY..ETC.. ### --> <CommandLine>cmd /c %Windir%\Setup\Scripts\wpi.cmd</CommandLine> </SynchronousCommand> </FirstLogonCommands>
  18. The smartscreen filter is from the registry key [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\PhishingFilter] You should be able to add those settings from the <settings pass="oobeSystem"> with FirstLogonCommands ~DP
  19. I believe the issue is from Windows Resource Protection (which is the new name for Windows File Protection) when changing system files. XP use to store the system backup files from the dllcache but now they are stored in the C:\Windows\winsxs\Backup folder beginning with Vista. read this => http://msdn.microsoft.com/en-us/library/aa382503%28VS.85%29.aspx http://www.tek-tips.com/viewthread.cfm?qid=1722619 ~DP
  20. @bigmusle I noticed the watermark still shows the old website "http://www.berlios.de/" and not updated to your new site don't know if this is a oversite or just planned that way. ~DP
  21. This must be like one of the Most asked questions on here, yes look at BigMuscle's guide on his site which will explain how to enable this in the registry or you can do it from a script also. ' Enable Battery Mode for AeroGlass For 8.1 ' http://www.glass8.eu/' EnableAeroWithBattery.vbs ~DosProbie @ MSFN' ### RUN AS ADMINISTRATOR.. If WScript.Arguments.length =0 Then Set objShell = CreateObject("Shell.Application") objShell.ShellExecute "wscript.exe", Chr(34) & _ WScript.ScriptFullName & Chr(34) & " uac", "", "runas", 1 Else' ### VARIABLES AND OBJECTS.. On Error Resume Next Dim WshShell Set WshShell=CreateObject("WScript.Shell")' ### ENABLE AERO GLASS WITH BATTERY WshShell.RegWrite "HKLM\SOFTWARE\Microsoft\Windows\DWM\DisableGlassOnBattery","0","REG_DWORD" ' ### REFRESH DWM.. Set objFSO = CreateObject("Scripting.FileSystemObject") WshShell.Run "Taskkill /F /T /IM dwm.exe",1,TRUE End If WScript.Quit()~DP
  22. Don't know if this will work on 8.1 but Grim made a tweaker with context menu for adjusting blur. http://www.msfn.org/board/topic/163794-aero-glass-blur-tweaker/ ~DP
×
×
  • Create New...