WizardKit/Diagnostics/MailPasswordView (as ADMIN).cmd
Alan Mason a4c0c487ff 2016-08: Retroactive Updates
* Added OutlookAttachView

* Added PerfMonitor2

* CHKDSK
  * Will use the newer repair features on Windows 8 or newer

* MailPassView & ProduKey
  * Now saved in a 7-Zip encrypted archive to avoid deletion by AV

* SW Checklist / Diagnostics
  * Windows 10 Blocked automatically
    * (Too late but whatevs it was in testing before the cutoff)

* Bugfixes
  * Activate Windows (with BIOS key)
    * Wasn't extracting ProduKey before trying to run it
  * SW Diagnostics
    * Should now report the preview size from BleachBit correctly
2017-11-17 00:51:23 -07:00

22 lines
No EOL
358 B
Batchfile

@echo off
:Init
setlocal enabledelayedexpansion
pushd %~dp0\..\.bin
:Flags
for %%f in (%*) do (
if /i "%%f" == "/DEBUG" (@echo on)
)
:Extract
mkdir "mailpv" >nul 2>&1
7-Zip\7z.exe x mailpv.7z -omailpv -aos -pAbracadabra -bsp0 -bso0
ping -n 1 127.0.0.1>nul
:Launch
call "Scripts\Launch.cmd" Program "mailpv" "mailpv.exe" "" /admin
:Done
popd
endlocal