Intune Initial Scripts Backup

This commit is contained in:
2025-04-21 14:21:38 -04:00
commit 71764cd10f
241 changed files with 28218 additions and 0 deletions

20
dump/GUI-Inputbox.ps1 Normal file
View File

@@ -0,0 +1,20 @@
$global:FN = ""
function New-InputBox
{
param
(
[Parameter(Mandatory)]
[string]$FirstName,
[Parameter(Mandatory)]
[string]$LastName,
[Parameter(Mandatory)]
[string]$Password
)
$FirstName, $LastName, $Password
$Global:FN = $FirstName
}
Show-Command -Name New-InputBox