Jump to content

DosProbie

Member
  • Posts

    1,047
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Posts posted by DosProbie

  1. = 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  :yes:

     

    AG_Backup_Restore.png

  2. You need to number your Reg Adds for proper install sequence like so:

     

    ~DP  :whistle:

     

    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


  3.  resimdeki windows 7 gibi alt-tab penceresinde bulanıklıkistiyorum,bir araç oluşturmak gerekir.demişsiniz ama nasıl bir araç oluşturmam gerekir sistemim windows 8.1 update 1 pro yardımınız için teşekkürler fazla ingilizce bilmiyorum yanlış bir kelime söylediysem kusuruma bakmayın.

     

    You do realize that this is a English Speaking Forum Don.t you?

     

    ~DP  :whistle:

  4. You can add this batch to the distribution folder %Windir%\Setup\Scripts from your FirstLogonCommands like so. 

     

    ~DP  :whistle:

     

    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>nulexit

    Autounattend.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> 
  5. 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  :whistle:

  6. Hi,i have windows 8.1,and install the aeroglass. Everything is ok ,but when i am on battery mode,it disable.(When plug the charge enable)

     

    How can i fix this.I want the aero effect always.

     

    Thanks

     

    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  :whistle:

×
×
  • Create New...