You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# get system version
ver
tasklist
systeminfo
# show services
sc query state=all
# name of AV detection:
Get-CimInstance -Namespace root/SecurityCenter2 -ClassName AntivirusProduct
get-wmiobject -class "Win32_Product" -namespace "root\cimv2" -filter "Name like '%YOUR_FILTER_HERE%'"
net/domain commands
# get your privileges
whoami /priv
net user <user> /domain
# add user
net user <user> <passwd> /add
# add <user> to admins group
net localgroup "Administrators" <user> /add
utility commands
# local user manager
lusrmgr.msc
# services control panel
services.msc
# security policy manager
secpool.msc
taskmgr.exe
eventvwr.msc
# show permissions for chosen exe file
icacls <exe>