User Mike L - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T06:50:40Zhttp://stackoverflow.com/feeds/user/12085http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/99001/wcf-nettcpbinding-is-transport-encryption-enough2WCF netTCPBinding - Is transport encryption enough?Mike L2008-09-19T02:34:19Z2009-11-19T12:02:45Z
<p>I've got a WCF service which handles some sensitive data. I'd like to make sure I keep that data from being exposed and so I'm looking at netTCPBinding... primarily because I can control the network it runs across and performance is a high priority.</p>
<p>I recognize that there are two areas that can be encrypted: transport level and message level. I intend to use certificates to encrypt at the transport level, which I understand uses TLS over TCP.</p>
<p>The calling clients are also mine and so I control the transport level. Since I anticipate no change in the transport layer, do I need to bother with message level encryption? It seems unnecessary unless I want the flexibility of changing the transport.</p>
http://stackoverflow.com/questions/783807/wcf-security-and-certificates/884785#8847850Answer by Mike L for WCF, Security and CertificatesMike L2009-05-19T20:12:12Z2009-05-19T20:12:12Z<p>I've got project in production which is similar to your scenario. I have a Windows Service hosting endpoints via netTCPBinding and I used x509 certs... although in my case, the intent was to encrypt both the transport and message layers, as I was crossing over untrusted security boundaries. I was less concerned with providing authentication/authorization other than requiring the certificate be present.</p>
<p>Similar to your intranet scenarios (I'm assuming), I had authority over the server and client machines at installation time... or at least could dictate some of the terms of installation.</p>
<p>Rather than purchase the x509 certs and burden the client with that expense, I opted to roll our own. We set up one of our Win2003 servers to be a CA, issuing our own Certification Authority cert. We then generated an x509 cert for the server, as well as individual x509 certs for the clients.</p>
<p>The client and server certs were installed on both clients and server (as appropriate) into the personal user store at the computer level. We also installed our CA cert directly into the Trusted Root Certification Authorities section, thus making our client and server certs trusted.</p>
<p>Because I was less concerned with authentication/authorization, I don't know what to recommend as a best practice for dealing with binding certs to individual users and going more granular than machine-level (my solution was windows service to windows service communication -- completely unattended). I would think you'd need a cert for each user, installing it into their personal user store in the certificates MMC. The runtime implementation will be guided by how you configure WCF to do the cert lookup, so it should be fairly easy.</p>
<p>Throughout the process, I relied heavily on what I'd learned from this great CodeProject article: <a href="http://www.codeproject.com/KB/WCF/wcf%5Fcertificates.aspx?display=Print" rel="nofollow">Securing WCF Services with Certificates</a>. It walks you through generating/installing the certs. The sample WCF applicatoin is IIS-hosted, but I was able to pretty easily translate the config sections from web.config to app.config.</p>
<p>In my case, I exposed the Web interface for requesting certificates in Win2003 to the web itself, so the client could request certificates directly in the future. We have approval control, so it works well. I haven't had a need to generate new certs yet, so I can't say how much friction that would entail.</p>
http://stackoverflow.com/questions/818438/how-do-i-offer-automatic-updates-for-my-program-in-visual-basic-2008/818729#8187293Answer by Mike L for How do I offer automatic updates for my program in Visual Basic 2008?Mike L2009-05-04T03:52:39Z2009-05-04T03:52:39Z<p>If you don't go the ClickOnce option, then you'll probably end up tooling it yourself.</p>
<p>One of the considerations will be that the calling client has access to the update server -- undoubtedly over the web. HTTP calls on port 80 or HTTPS on port 443 are typically allowed through firewalls. That's probably a good place to start for your medium.</p>
<p>I've deployed a project which does this sort of thing by performing a call to a web service to determine if an update is available. The web service looks at a directory on our web server and examines a convention we have for a named zip file. The calling client makes a determination based on the versioning of whether an update is available.</p>
<p>If an update is available, the app spawns an executable that does the downloading (in my case it unzips as well), then re-launches the main entry point to the app and exits the updater. Using a separate executable in a spawing/shelling manner allows you to update the main trunk of the app, but you get into trickiness where it's cumbersome to update the update executable.</p>
<p>It's not as graceful as ClickOnce, but it's worked well for me. I haven't used ClickOnce, so I'm not aware of whether it has shortcomings in terms of user profile isolation.</p>
http://stackoverflow.com/questions/730528/synchronizing-files-across-multiple-servers/731167#7311671Answer by Mike L for Synchronizing Files Across Multiple ServersMike L2009-04-08T18:11:11Z2009-04-08T18:11:11Z<p>You could use Distributed File System (DFS), which is built into the Server OS. I've done this to accomplish a similar goal. </p>
<p>Essentially, you configure DFS to create a root, which is really just a URI. You might create <em>\\DOMAIN\SHARE</em> which looks like a share, although it is virtual. DFS leverages the domain's DNS to present it as a valid location. Within the root, you might create links which are just paths to physical file shares on any number of servers. These would be the equivalent of subdirectories under your root. Finally, for each link, you can create multiple targets. In your example, it would be a share on each of the machines. DFS will then replicate files in those shares across all paths listed as targets, using the File Replication Service.</p>
<p>It works very well for the two servers I have it spanning. I don't know how well it would scale when replicating to 1000+ servers. It's an enterprise level solution, but I'm not sure that number of machines would be administratively viable. Because you are spanning machines, you probably wouldn't need to replicate at that scale, but rather use this as a service, like the abstraction that it is. The path is a constant.</p>
<p>Other caveats: you have to have the File Replication Service installed. I think you'd also need a domain environment to really make this work.</p>
http://stackoverflow.com/questions/607669/how-do-i-convert-word-files-to-pdf-programmatically/608114#6081140Answer by Mike L for How do I convert Word files to PDF programmatically?Mike L2009-03-03T20:48:42Z2009-03-03T20:48:42Z<p>I have used <a href="http://sourceforge.net/projects/itextsharp/" rel="nofollow">iTextSharp</a> to generate PDFs before. It's an open source port of iText from the Java world and is pretty powerful.</p>
<p>I haven't explicitly done a Word to PDF conversion, but I have programmatically created and manipulated PDFs with it.</p>
<p>Here is another <a href="http://www.lowagie.com/iText/" rel="nofollow">link</a> to to the project.</p>
http://stackoverflow.com/questions/554132/calling-directory-exists-server-share-in-setup-project2Calling Directory.Exists("\\SERVER\SHARE\") in Setup ProjectMike L2009-02-16T18:38:22Z2009-02-16T18:54:36Z
<p>I have a .NET Setup Project to which I've added a custom installer action. During the setup process, the user has to provide a path (which often is a UNC path) to a share on their file server. I attempt to do some validation before proceeding to make sure the directory exists, as such:</p>
<pre><code>if (!Directory.Exists(serverDirectory)) {
throw new InstallException("Specified path does not exist or ...");
}
</code></pre>
<p>Pretty vanilla -- and in a console app, the <em>Directory.Exists()</em> code works as expected. However, in the context of the MSI, it does not. Specifically, the call to <em>Directory.Exists</em> always fails when using a network resource. The documentation for <em>Directory.Exists</em> does indicate <a href="http://msdn.microsoft.com/en-us/library/system.io.directory.exists.aspx" rel="nofollow" title="why">why</a>:</p>
<blockquote>
<p><strong>The Exists method does not perform network authentication. If you query an existing network share without being pre-authenticated, the Exists method will return false.</strong></p>
</blockquote>
<p>Searches have led me to other similar scenarios in ASP.NET where impersonation is the solution. That isn't applicable here, but it illustrates the issue.</p>
<p>How can I check for the existence of the network path? To put in the language of the documentation -- how do I pre-authenticate before the call? The user is installing as an administrator, and browsing to that path in Windows Explorer works successfully, so it's not permissions of the user, but rather a lack of checking by the code.</p>
<p>Have I created an unnecessary concern -- should I omit this and throw the exception later when trying to use the network resource... it's largely the same critical failure, right?</p>
http://stackoverflow.com/questions/547399/tool-or-library-for-comparing-xml-files/547443#5474434Answer by Mike L for Tool or library for comparing xml files.Mike L2009-02-13T19:58:18Z2009-02-13T19:58:18Z<p>SourceGear's DiffMerge is free for a single-user:</p>
<p><a href="http://www.sourcegear.com/diffmerge/" rel="nofollow">http://www.sourcegear.com/diffmerge/</a></p>
http://stackoverflow.com/questions/546529/recommended-vb-net-code-generators/547434#5474340Answer by Mike L for Recommended VB.NET Code GeneratorsMike L2009-02-13T19:56:02Z2009-02-13T19:56:02Z<p>I only know of a couple of products that are not free:</p>
<p>There is CodeRush from DevExpress:<br />
<a href="http://devexpress.com/Products/Visual_Studio_Add-in/Coding_Assistance/" rel="nofollow">http://devexpress.com/Products/Visual_Studio_Add-in/Coding_Assistance/</a></p>
<p>Miguel Castro has one called CodeBreeze:
<a href="http://www.steelbluesolutions.com/Summary/CodeBreeze/Default.aspx" rel="nofollow">http://www.steelbluesolutions.com/Summary/CodeBreeze/Default.aspx</a></p>
http://stackoverflow.com/questions/299150/wcf-here-to-stay/299750#2997501Answer by Mike L for WCF here to stay?Mike L2008-11-18T18:54:06Z2008-11-18T18:54:06Z<p>I second what ZombieSheep says. Although complex, it greatly simplifies distributing applications across physical and logical boundaries, facilitates interoperability, and mostly decouples implementation details like ports/protocols for communication.</p>
<p>It's definitely worth the time to learn, although depending on the solution, it may sometimes be overkill. I think you'll find that configuration will become easier as versions continue -- although that's pure speculation.</p>
<p>While Linq to SQL had a larger cousin in the Entity Framework, WCF has no such relative. It's here to stay.</p>
http://stackoverflow.com/questions/299604/how-to-uninstall-a-windows-service-and-delete-its-files-without-rebooting/299707#2997071Answer by Mike L for How to uninstall a windows service and delete its files without rebootingMike L2008-11-18T18:41:19Z2008-11-18T18:41:19Z<p>Both Jonathan and Charles are right... you've got to stop the service first, then uninstall/reinstall. Combining their two answers makes the perfect batch file or PowerShell script.</p>
<p>I will make mention of a caution learned the hard way -- Windows 2000 Server (possibly the client OS as well) will require a reboot before the reinstall no matter what. There must be a registry key that is not fully cleared until the box is rebooted. Windows Server 2003, Windows XP and later OS versions do not suffer that pain.</p>
http://stackoverflow.com/questions/258972/com-interop-supporting-multiple-versions1COM/Interop - Supporting Multiple VersionsMike L2008-11-03T15:23:22Z2008-11-03T15:37:26Z
<p>I've written a .NET console app that wraps CuteFTP's Transfer Engine - a COM object (ftpte). The version I wrapped is CuteFTP 7.0. I'd like to also support the 8.0 version, as some of the clients I integrate with have that version.</p>
<p>I have a reference in my Visual Studio project to the CuteFTP COM object... how can I reference the version 8.0 component and still support version 7.0? It seems to me that I'm forced to choose at design time, unless I make a bigger architectural shift.</p>
<p>Ideas?</p>
http://stackoverflow.com/questions/254546/is-seven-inner-joins-in-a-query-too-much/254569#2545692Answer by Mike L for Is seven inner joins in a query too much?Mike L2008-10-31T19:06:15Z2008-10-31T19:06:15Z<p>Seven joins makes it tougher for readability, but more important are performance and scalability. If those are OK, go for it.</p>
http://stackoverflow.com/questions/250518/windows-service-or-sql-job/250630#2506300Answer by Mike L for Windows Service or SQL Job?Mike L2008-10-30T15:34:58Z2008-10-30T15:34:58Z<p>To follow on Corey's point, if this is externally distributed, will you need to support SQL Express? If not, I'd go with the SQL job directly. Otherwise, you'll have to get more creative as SQL Express does not have the SQL Agent that comes with the full versions of SQL 2005 (as well as MSDE). Without the SQL Agent, you'll need another way to automatically fire the job. It could be a windows service, a scheduled task (calling a .NET app, powershell script, VBscript, etc.), or you could try to implement some trigger in SQL Server directly.</p>
http://stackoverflow.com/questions/246636/wcf-changing-endpoint-address-results-in-securityexception/246862#2468622Answer by Mike L for WCF - changing endpoint address results in securityexceptionMike L2008-10-29T13:52:24Z2008-10-29T13:52:24Z<p>I think by default wsHttpBinding uses Windows authentication. I'm not sure how hosting in IIS affects that scenario. </p>
<p>If you don't want security turned on, you can add an element for security and set the mode element to "None" to the config on both ends to turn off the default setting.</p>
<p>I think this may do the trick -- I've added the section for wsHttpBinding and set the bindingConfiguration of your service to point to the newly added binding properties:</p>
<pre><code><system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="wsHttpBind">
<security mode="None">
<transport clientCredentialType="None" protectionLevel="EncryptAndSign" />
<message clientCredentialType="None" algorithmSuite="Default" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<services>
<service behaviorConfiguration="ServiceBehavior"
name="RService">
<endpoint address=""
binding="wsHttpBinding"
bindingConfiguration="wsHttpBind"
name="RService"
contract="IRService">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="mex"
binding="mexHttpBinding"
name="MetadataExchange"
contract="IMetadataExchange" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="ServiceBehavior">
<!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="true"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</code></pre>
http://stackoverflow.com/questions/240471/should-i-use-msmq-or-sql-service-broker-for-transactions/241046#2410461Answer by Mike L for Should I use MSMQ or SQL Service Broker for transactions?Mike L2008-10-27T18:55:33Z2008-10-27T18:55:33Z<p>I've used MSMQ before and the only item I'd add to your list is a prerequisite check for versioning. I ran into an issue where one site had Win 2000 Server and therefore MSMQ v.2, versus Win 2003 Server and MSMQ v3. All my .NET code targeted v.3 and they aren't compatible... or at least not easily so.</p>
<p>Just a consideration if you go the MSMQ route.</p>
http://stackoverflow.com/questions/222413/find-the-shortest-path-in-a-graph-which-visits-certain-nodes/222468#2224681Answer by Mike L for Find the shortest path in a graph which visits certain nodes.Mike L2008-10-21T16:14:46Z2008-10-21T16:14:46Z<p>Rod Stephens wrote an excellent article on various approaches to this problem:</p>
<p><a href="http://www.devx.com/dotnet/Article/38666/0/page/1" rel="nofollow">Network Know-How: Finding Shortest Paths</a></p>
http://stackoverflow.com/questions/204463/what-is-special-about-a-code-signing-certificate/222264#2222641Answer by Mike L for What is special about a code signing certificate?Mike L2008-10-21T15:18:43Z2008-10-21T15:18:43Z<p>When a cert is called into action, the role it purports to perform is as important as identification. It's not just about identity, but also about role authorization. An email protection cert should not be able to perform server authentication. Security concerns dictate a necessary restriction in the power given through a single certificate. The underlying API should enforce the correct usage, be it through the OS or an abstraction such as the .NET Framework.</p>
<p>There are different certificate types because there are very different roles in authentication and authorization that would need them. Allowing different certificate types and hierarchies allow for a model of certificate chains, as found in the "Certification Path" on a certificate. A Server Authentication cert will need to have a top-level CA cert somewhere in the trusted root certificates... or be a part of a family tree of certs which ultimately does. 3rd party Certificate Authorities, I'm sure, price them on a scale of functionality and trust.</p>
<p><em>Boot To The Head</em> is right... there is an Enhanced Key Usage attribute which provides a description of what the cert claims the role to be (e.g. Server Authentication; or in the case of my CA's cert: Digital Signature, Certificate Signing, Off-line CRL Signing, CRL Signing). Look at the details in a certificate's properties and you'll find it.</p>
http://stackoverflow.com/questions/207283/command-powershell-script-to-reset-a-network-adapter/207402#2074022Answer by Mike L for Command/Powershell script to reset a network adapterMike L2008-10-16T04:02:03Z2008-10-16T04:02:03Z<p>See this article from The Scripting Guys, <a href="http://www.microsoft.com/technet/scriptcenter/resources/qanda/sept08/hey0929.mspx" rel="nofollow">"How Can I Enable or Disable My Network Adapter?"</a></p>
http://stackoverflow.com/questions/204463/what-is-special-about-a-code-signing-certificate/207104#2071040Answer by Mike L for What is special about a code signing certificate?Mike L2008-10-16T01:14:32Z2008-10-16T01:14:32Z<p>I'd also add that a .NET assembly has to be strongly named (which requires it to be signed) in order to be added to the GAC.</p>
<p>There are different types of certs... from the CA that is bundled in Win 2003 server, you can request:</p>
<ul>
<li>Client authentication</li>
<li>Email protection</li>
<li>Server authentication</li>
<li>Code signing</li>
<li>Time stamp signing</li>
<li>IPSec</li>
<li>Other</li>
</ul>
http://stackoverflow.com/questions/205872/program-to-convert-vob-file-to-format-that-flash-video-encoder-can-read/207071#2070711Answer by Mike L for Program to convert vob file to format that flash video encoder can readMike L2008-10-16T00:59:07Z2008-10-16T00:59:07Z<p>I've used <a href="http://www.erightsoft.net/SUPER.html" rel="nofollow">Super</a> and converted VOBs to WMV. Very nice product and very easy to use.</p>
http://stackoverflow.com/questions/206577/vb6-support-for-sql-smo-and-net-2-0/207056#2070562Answer by Mike L for VB6 support for SQL SMO and .Net 2.0Mike L2008-10-16T00:53:09Z2008-10-16T00:53:09Z<p>I don't know of a way you can get to SMO via VB6. I'd agree with G Mastros about doing a COM/Interop approach to implement .NET code directly.</p>
<p>An alternative to consider is that you could shell out to Powershell, executing a script that would do your .NET SMO work. You still have the pre-requisite of requiring the .NET framework (and Powershell obviously), but it would get the job done. Your script could take parameters for credentials, database name, backup type, etc.</p>
<p>I implement this a lot at clients who have SQL Express (no SQL Agent for backups, like MSDE). I hook up a scheduled task which invokes the script and manages their backups.</p>
<p>If helpful, here is a script -- largely stolen but I have modified it somewhat:</p>
<pre><code>param (
[string] $ServerName,
[string] $DatabaseName,
[string] $Backuptype,
[string] $BackupPath,
[int] $NumDays
)
Get-ChildItem $BackupPath | where {$_.LastWriteTime -le (Get-Date).AddDays(-$NumDays)} | remove-item
[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.Smo") | out-null
[System.IO.Directory]::CreateDirectory($BackupPath) | out-null
$srv=New-Object "Microsoft.SqlServer.Management.Smo.Server" "$servername"
$bck=new-object "Microsoft.SqlServer.Management.Smo.Backup"
if ($Backuptype -eq "FULL")
{
$bck.Action = 'Database'
$extenstion=".BAK"
$text1="Full Backup"
}
if ($Backuptype -eq "TRAN")
{
$bck.Action = 'Log'
$bck.LogTruncation = 2
$extenstion=".TRN"
$text1="Transactional Log Backup"
}
if ($Backuptype -eq "DIFF")
{
$bck.Incremental = 1
$extenstion=".DIFF"
$text1="Differential Backup"
}
$fil=new-object "Microsoft.SqlServer.Management.Smo.BackupDeviceItem"
$fil.DeviceType='File'
$fil.Name=[System.IO.Path]::Combine($BackupPath, $DatabaseName+ "_"+ [DateTime]::Now.ToString("yyyy_MM_dd_HH_mm")+$extenstion)
$bck.Devices.Add($fil)
$bck.Database=$DatabaseName
$bck.SqlBackup($srv)
write-host $text1 of $Databasename done
</code></pre>
<p>It can do full, differential, and transactional backups and uniquely names each resulting file based on the date and time, deleting all files older than a certain number of days.</p>
<p>The syntax to call it is:</p>
<pre><code>.\Backup.ps1 INSTANCENAME DATABASENAME FULL|TRAN|DIFF PATH DAYSTOKEEP
</code></pre>
<p>so...</p>
<pre><code>.\Backup.ps1 SQLEXPRESS Northwind FULL C:\TempHold\Test 30
.\Backup.ps1 SQLEXPRESS Northwind TRAN C:\TempHold\Test 30
.\Backup.ps1 SQLEXPRESS Northwind DIFF C:\TempHold\Test 30
</code></pre>
<p>To Schedule in Task Scheduler, pass in:</p>
<pre><code>powershell c:\temphold\test\backup.ps1 "SQLEXPRESS Northwind DIFF C:\TempHold\Test 30"
</code></pre>
http://stackoverflow.com/questions/201426/vs2005-cant-select-windows-service-as-project-type/201516#2015161Answer by Mike L for VS2005 + cant select windows service as project typeMike L2008-10-14T14:57:47Z2008-10-14T14:57:47Z<p>You need an installer class in your project, then you need a Setup project which will incorporate the output of the project's build.</p>
<p>See here: <a href="http://msdn.microsoft.com/en-us/library/aa984464(VS.71).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa984464(VS.71).aspx</a> for a great walkthrough.</p>
http://stackoverflow.com/questions/201320/is-it-possible-to-host-a-tcp-endpoint-in-an-iis6-hosted-service/201430#2014302Answer by Mike L for Is it possible to host a TCP endpoint in an IIS6 hosted service?Mike L2008-10-14T14:37:07Z2008-10-14T14:37:07Z<p>IIS 5.1 and IIS 6 can only host HTTP bindings. IIS7 has WAS (Windows Activation Service) which allows hosting of endpoints bound to any transport protocol... so it would be capable of TCP.</p>
<p>If you must host with IIS 6, then you're stuck with the HTTP bindings. If not, consider self-hosting in a Windows Service.</p>
http://stackoverflow.com/questions/199773/what-is-the-purpose-of-installer-class-in-visual-studio-2005/199798#1997981Answer by Mike L for What is the purpose of Installer class in Visual studio 2005Mike L2008-10-14T02:14:03Z2008-10-14T02:14:03Z<p>I also use them to override behavior in the base installer class, such that I can run validations based on input in the MSI wizard, create files and folders, etc.</p>
<p>For Windows Services, I think they are required.</p>
http://stackoverflow.com/questions/199468/c-image-clone-out-of-memory-exception/199596#1995960Answer by Mike L for C# Image.Clone Out of Memory Exception Mike L2008-10-14T00:38:29Z2008-10-14T00:38:29Z<p>This is a reach, but I've often found that if pulling images directly from disk that it's better to copy them to a new bitmap and dispose of the disk-bound image. I've seen great improvement in memory consumption when doing so.</p>
<p>Dave M. is on the money too... make sure to dispose when finished.</p>
http://stackoverflow.com/questions/187588/self-signed-certificate-in-windows-without-makecert/189048#1890482Answer by Mike L for Self Signed Certificate in Windows without makecert?Mike L2008-10-09T20:21:21Z2008-10-09T20:21:21Z<p>I haven't used OpenSSL, but I'm in the same boat and have found this article helpful:</p>
<p><a href="http://www.codeproject.com/KB/WCF/wcf_certificates.aspx" rel="nofollow">Securing WCF Services with Certificates</a></p>
<p>The author walks you through installing Microsoft Certificate Services, creating a CA that can be added to the trusted certificate authorities (on both client and server, since it's self signed), then generating client and server certificates that chain from the self-signed CA cert.</p>
<p>You won't need the client certs, but it does help you to create a self-signed CA and server cert.</p>
http://stackoverflow.com/questions/188636/how-to-force-restart-a-windows-box-using-vbscript/188796#1887961Answer by Mike L for How to force restart a windows box using vbscript?Mike L2008-10-09T19:23:31Z2008-10-09T19:23:31Z<p>Well, this uses VBScript -- although truthfully it invokes the same command line shutdown that you're trying to do. I've tested it and it works.</p>
<pre><code>Dim oShell
Set oShell = CreateObject("WScript.Shell")
'restart, wait 5 seconds, force running apps to close
oShell.Run "%comspec% /c shutdown /r /t 5 /f", , TRUE
</code></pre>
<p>What OS are you running against? This test was against XP. I wonder if the server OS requires a shutdown code...</p>
http://stackoverflow.com/questions/183530/wcf-endpoint-with-priority/188724#1887241Answer by Mike L for WCF Endpoint with Priority Mike L2008-10-09T19:07:59Z2008-10-09T19:07:59Z<p>You should take a look at this great two part series from Michele Leroux Bustamante in MSDN Magazine:</p>
<p><a href="http://msdn.microsoft.com/en-us/magazine/cc500646.aspx" rel="nofollow">Building a WCF Router, Part 1</a> and
<a href="http://msdn.microsoft.com/en-us/magazine/cc546553.aspx" rel="nofollow">Building a WCF Router, Part 2</a></p>
<p>Part 1, in particular, would be interesting to you:</p>
<blockquote>
<p>Sometimes it is useful to introduce an
intermediary or router service between
a client and a target service to
receive messages that flow between
them and perform additional activities
such as logging, <strong><em>priority routing</em></strong>,
online/offline routing, load
balancing, or to introduce a security
boundary. When such an intermediate
service is introduced, it becomes
necessary to tweak some addressing and
message filtering behaviors to
accommodate.</p>
</blockquote>
<p><strong><em>[my emphasis added]</em></strong></p>
<p>She also has the related <a href="http://www.dasblonde.net/downloads/routers.zip" rel="nofollow">source code</a> available on her <a href="http://www.dasblonde.net" rel="nofollow">blog</a>.</p>
http://stackoverflow.com/questions/187915/detecting-a-process-is-already-running-in-windows-using-c-net/188010#1880100Answer by Mike L for Detecting a Process is already running in windows using C# .netMike L2008-10-09T16:15:14Z2008-10-09T16:15:14Z<p>Something like this: </p>
<pre><code> foreach ( WindowsProcess in Process.GetProcesses) {
if (WindowsProcess.ProcessName == nameOfProcess) {
Console.WriteLine(WindowsProcess.WorkingSet64.ToString);
Console.WriteLine(WindowsProcess.UserProcessorTime.ToString);
Console.WriteLine(WindowsProcess.TotalProcessorTime.ToString);
}
}
</code></pre>
http://stackoverflow.com/questions/187836/how-do-i-restart-a-service-on-a-remote-machine-in-windows/187872#1878720Answer by Mike L for How do I restart a service on a remote machine in Windows?Mike L2008-10-09T15:39:01Z2008-10-09T15:39:01Z<p>Agreed with the Connect to Another computer option. I've used the Computer Management MMC to do similar stuff in the past.</p>
<p><strong>NET START <em>SERVICENAME</em></strong> is the syntax for command line, but I don't see a way to do target a remote machine.</p>
<p>This sounds like a job for PowerShell.</p>
http://stackoverflow.com/questions/99001/wcf-nettcpbinding-is-transport-encryption-enough/1762826#1762826Comment by Mike L on WCF netTCPBinding - Is transport encryption enough?Mike L2009-11-20T22:00:13Z2009-11-20T22:00:13ZI should have been more clear that I don't control the middle of the network... just the endpoints. By "controlling the network" I meant to imply that I don't have to worry about firewall restrictions... I have management of those.http://stackoverflow.com/questions/1063307/x509-secured-wcf-what-certificate-to-getComment by Mike L on x509 secured WCF - What certificate to get?Mike L2009-08-20T17:58:38Z2009-08-20T17:58:38ZIs it client/server or P2P?http://stackoverflow.com/questions/1213346/xaml-design-view-broken-in-visual-studio-2008-for-silverlight-3/1215490#1215490Comment by Mike L on XAML design view broken in visual studio 2008 for silverlight 3?Mike L2009-08-11T15:41:42Z2009-08-11T15:41:42ZNice -- I was able to expand the splitter and click to reload. All is still there. +1 from me.http://stackoverflow.com/questions/258972/com-interop-supporting-multiple-versions/259010#259010Comment by Mike L on COM/Interop - Supporting Multiple VersionsMike L2009-02-13T21:53:43Z2009-02-13T21:53:43ZSorry... I should have made this the answer long ago. Unfortunately the newer API did introduce a breaking change, but I established a plug-in model and put the versions in separately-wrapped libraries. Need v.7? Use this DLL. Ver 8.0, use this instead.http://stackoverflow.com/questions/297985/is-com-dead/297993#297993Comment by Mike L on Is COM dead ???Mike L2008-12-04T15:05:31Z2008-12-04T15:05:31Z@Gishu - Totally agree... Office and it's need to maintain backwards compatibility will keep COM alive longer than almost anything else. The move to 64 bit in the mainstream might change the equation some.http://stackoverflow.com/questions/246636/wcf-changing-endpoint-address-results-in-securityexception/247032#247032Comment by Mike L on WCF - changing endpoint address results in securityexceptionMike L2008-10-29T15:06:15Z2008-10-29T15:06:15ZI imagine protectionLevel attribute is OK in app.config, but not in web.config. I typically self-host in Windows Services, so I'm not as familiar with the way it hooks into IIS.http://stackoverflow.com/questions/206577/vb6-support-for-sql-smo-and-net-2-0/227659#227659Comment by Mike L on VB6 support for SQL SMO and .Net 2.0Mike L2008-10-23T13:12:26Z2008-10-23T13:12:26ZThis is probably the cleanest way to get it done. It's funny because I always consider COM Interop to be merely exposing COM objects in .NET... but it does work the other way too! Nice solution.http://stackoverflow.com/questions/204463/what-is-special-about-a-code-signing-certificate/207104#207104Comment by Mike L on What is special about a code signing certificate?Mike L2008-10-16T01:43:31Z2008-10-16T01:43:31ZAh... I didn't know that... thanks!http://stackoverflow.com/questions/127936/deleting-custom-event-log-source-without-using-code/128704#128704Comment by Mike L on Deleting Custom Event Log Source Without Using CodeMike L2008-10-10T16:15:17Z2008-10-10T16:15:17ZI hate to muck with the registry, but sometimes it's the only way. Sadly you can't effectively enumerate EventSources like you can EventLogs. You can test for the existence, providing a name, but you can't loop through them.http://stackoverflow.com/questions/103422/simple-way-to-parse-a-persons-name-into-its-component-parts/103475#103475Comment by Mike L on Simple way to parse a person's name into its component parts?Mike L2008-09-19T16:36:21Z2008-09-19T16:36:21ZAgreed. I took over a legacy app and I'm forced to parse the names because it's all stored together. It's a pain and I'm always having to add some extra logic to the routine to account for an outlier. User input varies, of course, so it's largely a crapshoot.http://stackoverflow.com/questions/103059/where-to-start-with-source-control/103076#103076Comment by Mike L on Where to start with source-controlMike L2008-09-19T15:46:09Z2008-09-19T15:46:09ZI wholly agree. That series was the definitive primer that got me to learn the concepts and the differences.http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102112#102112Comment by Mike L on Hidden Features of VB.NET?Mike L2008-09-19T14:17:51Z2008-09-19T14:17:51ZAgreed on this... much more readable and promotes the good kind of laziness.