#Extract installshield FreeDWGViewer.exe /extract_all:c:\temp\Brava
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sc config "VMwareHostd" start= disabled | |
sc config "VMware NAT Service" start= disabled | |
sc config "VMUSBArbService" start= disabled | |
sc config "VMnetDHCP" start= disabled | |
sc config "VMAuthdService" start= disabled | |
net stop "VMwareHostd" | |
net stop "VMware NAT Service" | |
net stop "VMUSBArbService" | |
net stop "VMnetDHCP" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
: ***************************************************************** | |
: SCRIPT TO REMOVE EMA CONFIG FILES - Avaya Contact Recorder v15.x | |
: Ref: Avaya Contact Recorder Integration to Workforce Optimization Guide Version 15.2 | |
: Topology Changes, Page 38 | |
: ***************************************************************** | |
: by Mark@???? | |
@echo off | |
: ------------ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: UNINSTALL SCREEN CAPTURE (AVAYA CONTACT RECORDER) | |
:: AUTHOR: MARK | |
:: MODDED FROM: https://community.spiceworks.com/topic/2143980-deploy-or-upgrade-java-8-via-shutdown-script-remove-old-javas | |
:: It extracts software software GUID, then use the GUID to search the name and version | |
@echo off | |
setlocal ENABLEDELAYEDEXPANSION | |
set SoftwareName=Screen Capture Module | |
set x86GUID=HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall | |
set x64GUID=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; set_ie_proxy.ahk | |
;################################################################################# | |
; Enable/Disable IE Proxy | |
;################################################################################# | |
; ref: https://autohotkey.com/board/topic/101854-switch-proxy-on-or-off/?p=633874 | |
SetProxy("proxy.myproxyprovider.com:1234",1) | |
,HostProxy=RegRead(,,"ProxyServer") | |
,ProxyStatus=RegRead(,,"ProxyEnable") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; my_ie_proxy.ahk | |
;################################################################################# | |
; Enable/Disable IE Proxy with GUI | |
;################################################################################# | |
; ref: //autohotkey.com/board/topic/101854-switch-proxy-on-or-off/?p=634033 | |
global AddressPort = "proxy.myproxyprovider.com:1234" | |
Gui, Add, Text, x20 cBlue, %AddressPort% | |
Gui, Add, Button, x26 y20 w100 h30 Gon , I'm at work |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ref: https://stackoverflow.com/a/9587943/2854578 | |
$sourceDir = "C:\Users\mark\AppData\" | |
$targetDir = "E:\temp2\temptest\" | |
$includefiletype = @("*.log*", "*.log") | |
$startDateTime = "2019-08-29 8:18:00 PM" | |
$endDateTime = "2019-08-29 8:20:00 PM" | |
Get-ChildItem -Path $sourceDir -Include $includefiletype -Recurse | | |
Where-Object { $_.LastWriteTime -ge $startDateTime -and $_.LastWriteTime -le $endDateTime} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########## | |
# Win 10 / Server 2016 / Server 2019 Initial Setup Script - Mark's Presets | |
# Source: https://github.com/Disassembler0/Win10-Initial-Setup-Script | |
########## | |
### Require administrator privileges ### | |
RequireAdmin | |
### Privacy Tweaks ### | |
DisableTelemetry # EnableTelemetry |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
config: { | |
// truncated | |
// hyper-launch-menu configuration | |
shells: [ | |
{Name: "CMD", shell: 'cmd.exe', args: ['--login']}, | |
{name: "Powershell", group: [ | |
{name: "Windows", shell: "powershell.exe", args: ['--login']}, | |
{name: "Core", shell: "C:\\tools\\powershell-core7\\pwsh.exe", default: true}, |