Intune Initial Scripts Backup
This commit is contained in:
20
dump/GUI-Inputbox.ps1
Normal file
20
dump/GUI-Inputbox.ps1
Normal 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
|
||||
Reference in New Issue
Block a user