Author: admin

The Medical Industry

Just heard of this newly uncovered and documented scam. Person buys small rural hospital, then sends claims to lab in another state. Moves billing out of hospital oversight to outsourced company. This creates a scenario where you can push false and over inflated labs to a place that does not exist, and a billing org can approve claims with virtually… Read more →

Auditing Installed Applications Remotely

PowerShell script to help determine the GUID of the applications installed on PCs or servers. This way we may easily create uninstallers if needed through PDQDeploy. This script will get all x64 applications on station77 Invoke-command -cn station77 -scriptblock {Get-ItemProperty HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall* | Select-Object DisplayName, UninstallString | FT } This script will get all x86 applications on station77 Invoke-command -cn station77… Read more →