mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 14:45:52 -06:00
20 lines
484 B
PowerShell
20 lines
484 B
PowerShell
|
<#
|
||
|
.NOTES
|
||
|
Author : Chris Titus @christitustech
|
||
|
Runspace Author: @DeveloperDurp
|
||
|
GitHub : https://github.com/ChrisTitusTech
|
||
|
Version : #{replaceme}
|
||
|
#>
|
||
|
|
||
|
Start-Transcript $ENV:TEMP\Winutil.log -Append
|
||
|
|
||
|
#Load DLLs
|
||
|
Add-Type -AssemblyName System.Windows.Forms
|
||
|
|
||
|
# variable to sync between runspaces
|
||
|
$sync = [Hashtable]::Synchronized(@{})
|
||
|
$sync.PSScriptRoot = $PSScriptRoot
|
||
|
$sync.version = "#{replaceme}"
|
||
|
$sync.configs = @{}
|
||
|
$sync.ProcessRunning = $false
|