Skip to content

Instantly share code, notes, and snippets.

Microsoft Windows [Version 6.3.9600]
(c) 2013 Microsoft Corporation. All rights reserved.
C:\Users\William>tracert jabbr.net
Tracing route to jabbr.net [137.117.17.70]
over a maximum of 30 hops:
1 6 ms 6 ms 9 ms 192.168.2.1
2 * * * Request timed out.
Disable-UAC
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
Set-StartScreenOptions -EnableBootToDesktop
cinst IIS-WebServerRole -source windowsFeatures
cinst IIS-ISAPIFilter -source windowsFeatures
cinst IIS-ISAPIExtensions -source windowsFeatures
cinst IIS-NetFxExtensibility -source windowsFeatures
cinst IIS-ASPNET -source windowsFeatures
cinst TelnetClient -source windowsFeatures
public class Demo
{
private Dictionary<Type, Action<object>> strategies;
public Demo()
{
strategies = new Dictionary<Type, Action<object>>();
strategies.Add(typeof(OutputToConsoleWindow), value => DoSomething(value as OutputToConsoleWindow));
strategies.Add(typeof(OutputToLogFile), value => DoSomething(value as OutputToLogFile));
}
using System;
using System.Collections;
using System.Data;
namespace DBPortal
{
[Serializable()]
public class AmountsRec
{
public int AmtSeqNo {get{return _AmtSeqNo_;}set{_AmtSeqNo_=value;}}int _AmtSeqNo_;