commit
34f969a286
|
@ -4,7 +4,8 @@ If you are missing from the acknowledgement, please let me know (I did not forge
|
||||||
<img src="https://github.com/api0cradle/LOLBAS/raw/master/Logo/LOLScript.png" height="150">
|
<img src="https://github.com/api0cradle/LOLBAS/raw/master/Logo/LOLScript.png" height="150">
|
||||||
|
|
||||||
# OS SCRIPTS
|
# OS SCRIPTS
|
||||||
[Cl_invocation.ps1](OSScripts/Cl_invocation.md)
|
[Cl_invocation.ps1](OSScrits/Cl_invocation.md)
|
||||||
|
[CL_mutexverifiers.ps1](OSScripts/CL_mutexverifiers.md)
|
||||||
[Manage-bde.vbs](OSScripts/Manage-bde.md)
|
[Manage-bde.vbs](OSScripts/Manage-bde.md)
|
||||||
[pester.bat](OSScripts/pester.md)
|
[pester.bat](OSScripts/pester.md)
|
||||||
[Pubprn.vbs](OSScripts/Pubprn.md)
|
[Pubprn.vbs](OSScripts/Pubprn.md)
|
||||||
|
|
|
@ -0,0 +1,46 @@
|
||||||
|
## CL_Mutexverifiers.ps1
|
||||||
|
|
||||||
|
* Functions: Execute
|
||||||
|
|
||||||
|
```
|
||||||
|
. C:\Windows\diagnostics\system\AERO\CL_Mutexverifiers.ps1
|
||||||
|
runAfterCancelProcess calc.ps1
|
||||||
|
```
|
||||||
|
```
|
||||||
|
. C:\Windows\diagnostics\system\Audio\CL_Mutexverifiers.ps1
|
||||||
|
runAfterCancelProcess calc.ps1
|
||||||
|
```
|
||||||
|
```
|
||||||
|
. C:\Windows\diagnostics\system\WindowsUpdate\CL_Mutexverifiers.ps1
|
||||||
|
runAfterCancelProcess calc.ps1
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
Acknowledgements:
|
||||||
|
* Pierre-Alexandre Braeken @pabraeken (Audio + WindowsUpdate)
|
||||||
|
|
||||||
|
Resources:
|
||||||
|
* https://twitter.com/pabraeken/status/995111125447577600
|
||||||
|
|
||||||
|
Full path:
|
||||||
|
```
|
||||||
|
C:\Windows\diagnostics\system\WindowsUpdate\CL_Mutexverifiers.ps1
|
||||||
|
```
|
||||||
|
```
|
||||||
|
C:\Windows\diagnostics\system\Video\CL_Mutexverifiers.ps1
|
||||||
|
```
|
||||||
|
```
|
||||||
|
C:\Windows\diagnostics\system\Speech\CL_Mutexverifiers.ps1
|
||||||
|
```
|
||||||
|
|
||||||
|
Notes:
|
||||||
|
calc.ps1 must be created in $env:temp
|
||||||
|
|
||||||
|
calc.ps1 content
|
||||||
|
```
|
||||||
|
calc
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -6,20 +6,37 @@
|
||||||
. C:\Windows\diagnostics\system\AERO\CL_Invocation.ps1
|
. C:\Windows\diagnostics\system\AERO\CL_Invocation.ps1
|
||||||
SyncInvoke <executable> [args]
|
SyncInvoke <executable> [args]
|
||||||
```
|
```
|
||||||
|
```
|
||||||
|
. C:\Windows\diagnostics\system\Audio\CL_Invocation.ps1
|
||||||
|
SyncInvoke <executable> [args]
|
||||||
|
```
|
||||||
|
```
|
||||||
|
. C:\Windows\diagnostics\system\WindowsUpdate\CL_Invocation.ps1
|
||||||
|
SyncInvoke <executable> [args]
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
Acknowledgements:
|
Acknowledgements:
|
||||||
* Jimmy - @bohops
|
* Jimmy - @bohops
|
||||||
|
* Pierre-Alexandre Braeken @pabraeken (Audio + WindowsUpdate)
|
||||||
|
|
||||||
Code sample:
|
Code sample:
|
||||||
|
|
||||||
|
|
||||||
Resources:
|
Resources:
|
||||||
* https://twitter.com/bohops/status/948548812561436672
|
* https://twitter.com/bohops/status/948548812561436672
|
||||||
|
* https://twitter.com/pabraeken/status/995107879345704961
|
||||||
|
|
||||||
Full path:
|
Full path:
|
||||||
```
|
```
|
||||||
C:\Windows\diagnostics\system\AERO\CL_Invocation.ps1
|
C:\Windows\diagnostics\system\AERO\CL_Invocation.ps1
|
||||||
```
|
```
|
||||||
|
```
|
||||||
|
C:\Windows\diagnostics\system\Audio\CL_Invocation.ps1
|
||||||
|
```
|
||||||
|
```
|
||||||
|
C:\Windows\diagnostics\system\WindowsUpdate\CL_Invocation.ps1
|
||||||
|
```
|
||||||
|
|
||||||
Notes:
|
Notes:
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
## Setup.exe
|
## Setup.exe
|
||||||
|
|
||||||
* Prerequisites
|
Prerequisites
|
||||||
|
|
||||||
Replace hpbcsiServiceMarshaller.exe.exe with your binary.exe in C:\LJ-Ent-700-color-MFP-M775-Full-Solution-15315\Installer
|
Replace hpbcsiServiceMarshaller.exe.exe with your binary.exe in C:\LJ-Ent-700-color-MFP-M775-Full-Solution-15315\Installer
|
||||||
|
|
||||||
* Functions: Execute
|
Functions: Execute
|
||||||
|
|
||||||
```
|
```
|
||||||
Run Setup.exe
|
Run Setup.exe
|
||||||
|
@ -23,3 +23,27 @@ Full path:
|
||||||
```
|
```
|
||||||
C:\LJ-Ent-700-color-MFP-M775-Full-Solution-15315
|
C:\LJ-Ent-700-color-MFP-M775-Full-Solution-15315
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Signature:
|
||||||
|
c:\lj-ent-700-color-mfp-m775-full-solution-15315\Setup.exe:
|
||||||
|
Verified: Signed
|
||||||
|
Signing date: 5:40 PM 4/30/2013
|
||||||
|
Publisher: Hewlett-Packard Company
|
||||||
|
Company: Hewlett-Packard
|
||||||
|
Description: Launches HP Installer.
|
||||||
|
Product: HP Installer
|
||||||
|
Prod version: 5.0.3.8581
|
||||||
|
File version: 5.0.3.8581
|
||||||
|
MachineType: 32-bit
|
||||||
|
Binary Version: 5.0.3.8581
|
||||||
|
Original Name: Setup.exe
|
||||||
|
Internal Name: Setup.exe
|
||||||
|
Copyright: Copyright (C) 2010 Hewlett-Packard. All rights reserved.
|
||||||
|
Comments: HP Installer
|
||||||
|
Entropy: 5.81
|
||||||
|
MD5: 2B826E7E02896B254B483B2CFE3ACB9F
|
||||||
|
SHA1: 1FD63A12334AD639E0F152DA0A0825BFA4633AEF
|
||||||
|
PESHA1: 6FDECDFC5CAF57D344607B655D0C1292F33C0D61
|
||||||
|
PE256: 6988241D3DA1AD045BF2BE41D93AF7FA746A77E2CC7590527F9E1B6EADA72B09
|
||||||
|
SHA256: F5AF24754137E6E60CDD8A3C84DF10C3E4FDFE5CA8BCC07A384674E52683E85C
|
||||||
|
IMP: 05B4EDEEF9A87F8D8A9AF8D45C469A09
|
||||||
|
|
Loading…
Reference in New Issue