Archive

Archive for the ‘Technical’ Category

Connecting to a Remote Oracle Database using SQLPLUS without a TNSNAMES File

September 28th, 2011 No comments

sqlplus [UserName]/[Password]@(description=
(address_list=(address=(protocol=TCP)(host=[Host Name or IP Address])(port=[Port No.])))(connect_data=(sid=[SID])))

Getting a list of Installed Features from Server08 using PS

June 10th, 2011 No comments


This is great for getting a list of installed features from a windows server. So far I’ve only tried do this locally aside from a quick test on a Windows 7 machine, from which it failed.

In powershell:
IMPORT-Module servermanager
Get-WindowsFeature

Source: http://blogs.msdn.com/b/powershell/archive/2009/01/27/managing-server-features-with-powershell-cmdlets-on-windows-2008-server-r2-beta.aspx

Categories: Technical Tags: