↓

TechTips.tv Logo
Home Menu ↓
Skip to primary content
Skip to secondary content
  • Home
  • About
  • Privacy Policy
  • Services
Home - Page 23 << 1 2 … 21 22 23 24 25 >>

Recent Posts

  • Install vBulletin 5 Connect – Part 1: Pre-Installation Setup
  • Install Active Directory in Hyper-V on Windows Server 2019: Part 3, Install and Configure Active Directory
  • Checklist for Configuring a Windows 2019 Server
  • Install Active Directory in Hyper-V on Windows Server 2019: Part 2, Install Windows Server
  • Install Active Directory in Hyper-V on Windows Server 2019: Part 1 Setup and Configure Hyper-V

Categories

  • Active Directory
  • Adobe
  • DNS
  • Hyper-V
  • IIS
  • iPad
  • Microsoft Office
  • Office 365
  • PowerShell
  • Reporting Services
  • SharePoint
  • SQL
  • System Center Service Manager
  • vBulletin
  • Windows
  • Word

Archives

  • March 2021
  • July 2019
  • June 2019
  • December 2016
  • November 2016
  • October 2016
  • September 2016
  • August 2016
  • July 2016
  • June 2016
  • May 2016
  • April 2016
  • January 2016
  • October 2015
  • September 2015
  • August 2015
  • June 2015
  • May 2015
  • April 2015
  • March 2015
  • February 2015
  • January 2015
  • December 2014
  • November 2014
  • August 2014
  • July 2014
  • June 2014
  • May 2014
  • April 2014
  • March 2014
  • February 2014
  • January 2014
  • November 2013
  • October 2013
  • September 2013
  • August 2013
  • July 2013
  • June 2013
  • May 2013
  • April 2013

Post navigation

← Older posts
Newer posts →

SQL Determine if Enterprise features are in use

Posted on July 8, 2013 by Jacki MoodyAugust 25, 2014

  You can determine if any SQL Enterprise version features are in use in a database by checking the sku features table. This query lists all edition-specific features that are enabled in the current database SELECT feature_name FROM sys.dm_db_persisted_sku_features ; … Continue reading →

Posted in SQL

PowerShell: Determine if string is null or is empty

Posted on June 25, 2013 by Jacki MoodyAugust 25, 2014

PowerShell makes it easy to check if a string is null or empty.  You use if (string) else. Setting your string variable to $null gives you an empty string: $mystringvar = $null if ($mystringvar) { “It is empty” } else { … Continue reading →

Posted in PowerShell

15 Tasks for New Windows 2012 Servers

Posted on June 18, 2013 by Jacki MoodyMarch 8, 2015

These tasks I do for every Windows 2012 server that I setup. 1) Change the time zone 2) Enable remote management 3) Enable remote desktop 4) Turn off Windows Firewall 5) Verify the time is correct 6) Give server a descriptive name … Continue reading →

Posted in Windows

Active Directory PowerShell Commands

Posted on June 14, 2013 by Jacki MoodyAugust 25, 2014

You can add Active Directory commands to PowerShell on a Windows 7 or Windows 8 workstation by adding the Remote Management Tools. Use one of these links to install the PowerShell Active Directory module for your client. Remote server administration … Continue reading →

Posted in Active Directory, PowerShell

Post navigation

← Older posts
Newer posts →
Copyright © 2013-2016 TechTips.tv. All rights reserved.
↑