sysinfo i/o

Last login: never logged off

  • ~
  • WINTEL
    • ACTIVE DIRECTORY
    • CITRIX
    • COMMANDS
    • EXCHANGE
    • IIS
    • POWERSHELL
    • MSSQL SERVER
  • LINUX
    • APACHE
    • BASH
    • NGINX
    • MONITORING
    • UTILITIES
  • SCRIPTS
    • BASH – GNU/Linux
    • BASH – BSD
    • BATCH
    • POWERSHELL
    • SQL
    • VBSCRIPT
  • DOWNLOADS
  • TIPS
  • NETWORKING
    • SSL
    • DNS
    • VPN
  • LINKS
    • COUCH POTATO
    • GITHUB
    • IPCONFIG.IO
    • MSDN LIBRARY
    • PRISM-BREAK
    • PRIVATEBIN
    • UPTIME STATUS
    • TOOLBOX
    • TRAVISFLIX
    • THE-EYE.EU
    • VS CODE
  • ABOUT
    • CONTACT
Home / Archives for Operating Systems

November 8, 2012 8:46 am By Travis Leave a Comment

CHMOD Directories Only

Change UNIX permissions on directories only. find . -type d -print0 | xargs -0 chmod 755 … [Read more...]

Filed Under: Linux, Shell

November 8, 2012 7:40 am By Travis 1 Comment

Export Active Active Directory Users into CSV

That's not a typo. Export only active Active Directory users (not disabled) into a csv file with csvde, the following should suite your needs: # Collect Internal users for your audit purposes csvde -d "OU=Users,OU=Internal,DC=DomainName,DC=Suffix" -r "(&(objectCategory=person)(!UserAccountControl=66050)(!UserAccountControl=514))" -l SAMAccountName,name,description,UserAccountControl,logonHours -f "InternalUsers.csv" You can easily put this into task scheduler for automated reporting at … [Read more...]

Filed Under: Active Directory, Windows Tagged With: csvde

November 8, 2012 7:28 am By Travis Leave a Comment

Get the SID of an Active Directory User

Can't remember why I needed to, but if you need to get the SID of an Active Directory user account you can run either of these powershell scripts: $name = “username” (New-Object System.Security.Principal.NTAccount($name)).Translate([System.Security.Principal.SecurityIdentifier]).value or $objUser = New-Object System.Security.Principal.NTAccount("fabrikam", "kenmyer") $strSID = $objUser.Translate([System.Security.Principal.SecurityIdentifier]) $strSID.Value … [Read more...]

Filed Under: Active Directory, Powershell, Windows Tagged With: SID

November 8, 2012 7:24 am By Travis Leave a Comment

List IIS Application Pool PID

Determine which application pool's worker process (w3wp.exe) is hogging your CPU resources. The command below can be run in a command prompt to list IIS Application Pool PID's. To view process ID's in task manager navigate to View | Select Columns | PID. I've needed to do this several times when a single worker process was consuming too much cpu resources and needed to be killed. Stopping the application pool did not help. %windir%/system32/inetsrv/appcmd list wp … [Read more...]

Filed Under: IIS, Windows Tagged With: appcmd

November 8, 2012 5:53 am By Travis 2 Comments

Exchange Server SSL Certificate Authority Change

Exchange Server SSL Certificate Authority Change

An industry wide change is coming to SSL certificates, which will affect Exchange Server and anything else using intranet names. On October 1, 2016 Certificate Authorities must mandatorily revoke all unexpired certificates with subject alternative names corresponding to internal names. The recommended way of securing Exchange Server with an SSL certificate is coming to an end. In the past, a UCC (SAN) certificate was purchased with a common name pointing to the public DNS address, and subject … [Read more...]

Filed Under: Exchange, SSL, Windows Tagged With: Exchange Server, SAN Certificate, SSL

  • « Previous Page
  • 1
  • …
  • 14
  • 15
  • 16

Made with