Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/04/2014 in all areas

  1. JLogan3o13

    .NET Native

    Thought this was an interesting article. Supposed to take C# down to machine code that performs the same as C++, with quite a large performance boost. http://blogs.msdn.com/b/dotnet/archive/2014/04/02/announcing-net-native-preview.aspx
    1 point
  2. Why would you want to manipulate a gui, when you can execute a powershell script, or the autoit-vb-like equivalent. Search for that on the forum or the interwebs on The Googles. http://blogs.msdn.com/b/san/archive/2012/07/03/managing-storage-with-windows-powershell-on-windows-server-2012.aspx
    1 point
  3. You are welcome Just an example using your first script: Local $ODBC = "LocaHost" Local $ODBC_IP = "10.10.1.10" Local $RPC_Port = "135" Local $SQL_Port = "1825" Local $LS_Port = "1234" Local $aPorts = [$RPC_Port, $SQL_Port, $LS_Port] TCPStartup() For $i = 0 To UBound($aPorts) - 1 $iSocket = TCPConnect($ODBC_IP, $aPorts[$i]) If @error Then ConsoleWrite("No luck connecting to " & $ODBC & "/" & $ODBC_IP & " on port " & $aPorts[$i] & @CRLF) Else ConsoleWrite("Yeah, I've connected to " & $ODBC & "/" & $ODBC_IP & " on port " & $aPorts[$i] & @CRLF) EndIf TCPCloseSocket($iSocket) Next TCPShutdown()
    1 point
  4. 1 point
×
×
  • Create New...