Install 11g (11.1.0.6) Oracle Client on Windows 7

http://msutic.blogspot.com/2009/08/how-to-instal-oracle-client-11g-on.html Shortly after initiating installation of Oracle Client 11g (11.1.0.6.0) installation stopped on prerequisite checks with error: Checking operating system requirements … Expected result: One of 5.0,5.1,5.2,6.0 Actual Result: 6.1 …

Redirect HTTP to HTTPS IIS

Redirect http to https in IIS. a. Run the control panel, administrative tool, server manager. Click the “Configure IE ESC” link and turn ESC off for Administrators. b. Run Internet …

LOC Visual Studio

Visual Studio 2010 and higher has this built in: Analyze > Calculate Code Metrics Visual Studio Plugin: http://www.wndtabs.com/ Powershell (counts non blanks): 123PS C:\> (dir -include *.cs,*.xaml -recurse | select-string …

SMTP email through Microsoft 365 via C#

An example of how to use the System.Net namespace to send emails (useful for ssl or tls mail servers). 1234567891011121314151617181920SmtpClient server = new SmtpClient("Smtp.mail.microsoftonline.com"); server.Port = 587; server.EnableSsl = true; …

Howto Install BGInfo

1). Create c:\BGInfo\ 2). Download exe, run exe, create your configuration, save bgi file as C:\BGInfo\bginfo.bgi 3). Click Start, Programs, right-click “Start Up” and choose “Explore all users” 4). Create …

Rebuild INVALID Oracle Objects

1234567891011SELECT ( case when object_type = ‘VIEW’ THEN ‘ALTER VIEW ‘ || object_name || ‘ COMPILE;’ when object_type = ‘PROCEDURE’ THEN ‘ALTER PROCEDURE ‘ || object_name || ‘ COMPILE;’ when …

Install Windows Service Manually Command Line

Create your windows service EXE: Install the service into the control panel of Windows: 1C:\> sc create [service name] binpath= "c:\program files(x86)\path\to\exe\file.exe" To remove the service from the control panel …