You can contact me
Please WhatsApp me at 8617727504
Web Application Price- ₹499
=============================================================
Tags
Happy to help you
satyajit chatterjee
googleappscript,googlesheet,webappscript,appscript,rameezimdad,google app script crud,google app script student payroll crud,google sheet crud,bill accounting software,invoice software for small business,invoice software,google apps script login form
satyajit.......
$firefox = Get-ItemProperty -Path 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*', 'HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*' | Where-Object { $_.DisplayName -like "*Mozilla Firefox (x64 en-US)*" }
if ($firefox) {
$uninstallString = $firefox.UninstallString
if ($uninstallString) {
Start-Process -FilePath "$uninstallString" -ArgumentList "/S" -Wait
Write-Output "Mozilla Firefox (x64 en-US) has been uninstalled."
} else {
Write-Output "Uninstall string for Mozilla Firefox (x64 en-US) not found."
}
} else {
Write-Output "Mozilla Firefox (x64 en-US) is not found."
}