mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-12-17 17:55:28 +00:00
Removal of more winget user scope code
This commit is contained in:
parent
e0237642c8
commit
b265675560
@ -33,62 +33,6 @@ function Invoke-WPFInstall {
|
|||||||
try {
|
try {
|
||||||
$sync.ProcessRunning = $true
|
$sync.ProcessRunning = $true
|
||||||
if($packagesWinget.Count -gt 0 -and $packagesWinget -ne "0") {
|
if($packagesWinget.Count -gt 0 -and $packagesWinget -ne "0") {
|
||||||
Add-Type -AssemblyName System.DirectoryServices.AccountManagement
|
|
||||||
Add-Type -assembly System.Windows.Forms
|
|
||||||
$PrincipalContext = New-Object System.DirectoryServices.AccountManagement.PrincipalContext('Machine')
|
|
||||||
$user = $env:USERNAME
|
|
||||||
|
|
||||||
Get-LocalUser | Where-Object Enabled -eq $true | ForEach-Object {
|
|
||||||
$validPassword = $false
|
|
||||||
while (-not $validPassword) {
|
|
||||||
try {
|
|
||||||
$myPasswordIsBlank = $PrincipalContext.ValidateCredentials($user, $null)
|
|
||||||
$validPassword = $true
|
|
||||||
} catch {
|
|
||||||
$form = New-Object System.Windows.Forms.Form
|
|
||||||
$form.Text = "Set password for $user"
|
|
||||||
$form.Size = New-Object System.Drawing.Size(500, 200)
|
|
||||||
|
|
||||||
$label = New-Object System.Windows.Forms.Label
|
|
||||||
$label.Text = 'Admin mode install failed. Set a USER password for login and user-based installation.'
|
|
||||||
$label.Size = New-Object System.Drawing.Size(480, 60)
|
|
||||||
$label.Location = New-Object System.Drawing.Point(10, 10)
|
|
||||||
$form.Controls.Add($label)
|
|
||||||
|
|
||||||
$passwordBox = New-Object System.Windows.Forms.TextBox
|
|
||||||
$passwordBox.Size = New-Object System.Drawing.Size(380, 20)
|
|
||||||
$passwordBox.UseSystemPasswordChar = $true
|
|
||||||
$passwordBox.Location = New-Object System.Drawing.Point(10, 125)
|
|
||||||
$form.Controls.Add($passwordBox)
|
|
||||||
|
|
||||||
$button = New-Object System.Windows.Forms.Button
|
|
||||||
$button.Text = 'Submit'
|
|
||||||
$button.Size = New-Object System.Drawing.Size(75, 23)
|
|
||||||
$button.Location = New-Object System.Drawing.Point(400, 125)
|
|
||||||
$button.Add_Click({
|
|
||||||
$password = $passwordBox.Text | ConvertTo-SecureString -AsPlainText -Force
|
|
||||||
if ($password) {
|
|
||||||
try {
|
|
||||||
Set-LocalUser -Name $user -Password $password
|
|
||||||
$validPassword = $PrincipalContext.ValidateCredentials($user, $passwordBox.Text)
|
|
||||||
if ($validPassword) {
|
|
||||||
$form.Close()
|
|
||||||
} else {
|
|
||||||
[System.Windows.Forms.MessageBox]::Show('Invalid password! Please try again.')
|
|
||||||
}
|
|
||||||
} catch {
|
|
||||||
[System.Windows.Forms.MessageBox]::Show('Error setting password!')
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
[System.Windows.Forms.MessageBox]::Show('No password entered!')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
$form.Controls.Add($button)
|
|
||||||
$form.ShowDialog() | Out-Null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Show-WPFInstallAppBusy -text "Installing apps..."
|
Show-WPFInstallAppBusy -text "Installing apps..."
|
||||||
Install-WinUtilWinget
|
Install-WinUtilWinget
|
||||||
Install-WinUtilProgramWinget -Action Install -Programs $packagesWinget
|
Install-WinUtilProgramWinget -Action Install -Programs $packagesWinget
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user