Files
Brandon Arvanaghi a8e41cba84 Restructured folders
2017-08-05 09:40:40 -04:00

12 lines
314 B
PowerShell

#
# Checks if process is currently being debugged, PowerShell
# Module written by Brandon Arvanaghi
# Website: arvanaghi.com
# Twitter: @arvanaghi
#
if (Test-Path Variable:PSDebugContext) {
Write-Output "A debugger is present, do not proceed."
} else {
Write-Output "No debugger is present. Proceed!"
}