User s t - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T20:52:44Z http://stackoverflow.com/feeds/user/20911 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/138144/whats-in-your-powershell-profile-ps1file 11 What's in your Powershell profile.ps1file? s t 2008-09-26T07:28:11Z 2009-09-28T15:05:23Z <p>What essential things (functions, aliases, start up scripts) do you have in your profile?</p> http://stackoverflow.com/questions/445139/how-to-get-program-files-folder-path-not-program-files-x86-from-32bit-wow-pro/452595#452595 1 Answer by s t for How to get Program Files folder path (not Program Files (x86)) from 32bit WOW process? s t 2009-01-17T01:08:56Z 2009-01-17T01:08:56Z <p>I appreciate all the help and, especially, the warnings in this thread. However, I really do need this path and this is how I got it in the end:</p> <p>(error checking removed for clarity, use at your own risk, etc)</p> <pre><code>WCHAR szNativeProgramFilesFolder[MAX_PATH]; ExpandEnvironmentStrings(L"%ProgramW6432%", szNativeProgramFilesFolder, ARRAYSIZE(szNativeProgramFilesFolder); </code></pre> http://stackoverflow.com/questions/445139/how-to-get-program-files-folder-path-not-program-files-x86-from-32bit-wow-pro 1 How to get Program Files folder path (not Program Files (x86)) from 32bit WOW process? s t 2009-01-14T23:52:01Z 2009-01-17T01:08:56Z <p>I need to get the path to the native (rather than the WOW) program files directory from a 32bit WOW process.</p> <p>When I pass CSIDL_PROGRAM_FILES (or CSIDL_PROGRAM_FILESX86) into SHGetSpecialFolderPath it returns the WOW (Program Files (x86)) folder path.</p> <p>I'd prefer to avoid using an environment variable if possible.</p> <p>I want to compare some values I read from the registry, if the values point to the path of either the WOW or native version of my app then my code does something, if not it does something else. To figure out where the native and WOW versions of my app are expected to be I need to get the paths to "Program Files (x86)" and "Program Files".</p> http://stackoverflow.com/questions/302314/how-do-i-change-the-acls-on-a-registry-key-c 0 How do I change the ACLs on a registry key? (C++) s t 2008-11-19T15:41:46Z 2008-12-08T13:33:42Z <p>I need to delete a regsitry key. It has a deny ACL on Set Value (I need this permission to delete it).</p> <p>How do I change the ACLs in C++?</p> http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/184480#184480 5 Answer by s t for What are some funny loading statements to keep users amused? s t 2008-10-08T19:34:55Z 2008-10-08T19:34:55Z <p>Checking prime directives...</p> <ul> <li>"Serve the public trust"</li> <li>"Protect the innocent" </li> <li>"Uphold the law"</li> <li>(Classified)</li> </ul> http://stackoverflow.com/questions/173307/best-windows-installation-file-creator/173354#173354 0 Answer by s t for Best Windows Installation file Creator? s t 2008-10-06T06:37:15Z 2008-10-06T06:48:46Z <p>I heart <a href="http://wix.sourceforge.net/" rel="nofollow">wix</a>, MSFT's open source, declarative (XML) based toolkit for building MSIs.</p> <p>It's ace.</p> <p>If you want to install binaries, add reg keys and even run "custom actions" (have your own code execure during install) you should have a look at it. Then you'll have a one-click (msi) solution. Good eh? </p> http://stackoverflow.com/questions/173328/whats-in-your-utility-toolkit/173371#173371 0 Answer by s t for What's in your Utility Toolkit? s t 2008-10-06T06:42:35Z 2008-10-06T06:42:35Z <p>wc.exe (from <a href="http://unxutils.sourceforge.net/" rel="nofollow">http://unxutils.sourceforge.net/</a>) so handy.</p> http://stackoverflow.com/questions/173318/what-field-of-software-engineering-do-you-work-in/173346#173346 2 Answer by s t for What field of software engineering do you work in? s t 2008-10-06T06:33:56Z 2008-10-06T06:33:56Z <p>Is there a correct answer to this? :)</p> <p>Closed source, C++, desktop application development for Windows.</p> http://stackoverflow.com/questions/137975/what-is-so-bad-about-singletons/137982#137982 9 Answer by s t for What is so bad about Singletons s t 2008-09-26T06:04:26Z 2008-09-26T06:04:26Z <p><a href="http://steve.yegge.googlepages.com/singleton-considered-stupid" rel="nofollow">some people</a> consider them stupid :)</p> http://stackoverflow.com/questions/137255/how-can-i-determine-if-a-remote-drive-has-enough-space-to-write-a-file-using-c/137357#137357 2 Answer by s t for How can I determine if a remote drive has enough space to write a file using C#? s t 2008-09-26T02:06:56Z 2008-09-26T02:06:56Z <p>Use WMI</p> <pre><code>using System.Management; // Get all the network drives (drivetype=4) SelectQuery query = new SelectQuery("select Name, VolumeName, FreeSpace from win32_logicaldisk where drivetype=4"); ManagementObjectSearcher searcher = new ManagementObjectSearcher(query); foreach (ManagementObject drive in searcher.Get()) { string Name = (string)drive["Name"]; string VolumeName = (string)drive["VolumeName"]; UInt64 freeSpace = (UInt64)drive["FreeSpace"]; } </code></pre> <p>based on (stolen from) <a href="http://www.dreamincode.net/code/snippet1576.htm" rel="nofollow">http://www.dreamincode.net/code/snippet1576.htm</a></p> http://stackoverflow.com/questions/131589/linux-c-programmer-to-c-windows-programmer/131601#131601 3 Answer by s t for Linux/C++ programmer to C#/Windows programmer s t 2008-09-25T05:30:17Z 2008-09-25T05:30:17Z <p>Since you already know how to program in C++, check out:</p> <p>A Programmers Introduction to C# 2.0, by Eric Gunnerson and Nick Wienholt <a href="http://rads.stackoverflow.com/amzn/click/1590595017" rel="nofollow">http://www.amazon.com/Programmers-Introduction-C-2-0-Third/dp/1590595017/ref=pd_sim_b_3/102-6809045-4740138?ie=UTF8&amp;qid=1079114993&amp;sr=8-1</a></p> <p>Nice balance between language reference and general .net information.</p> <p>Similarly: Essential .NET, Volume I: The Common Language Runtime by Don Box and Chris Sells <a href="http://rads.stackoverflow.com/amzn/click/0201734117" rel="nofollow">http://www.amazon.com/Essential-NET-Language-Microsoft-Development/dp/0201734117/ref=pd_bbs_sr_1?ie=UTF8&amp;s=books&amp;qid=1222320480&amp;sr=1-1</a></p> <p>Really interesing "under the covers" net book (but written for .net version 1 so may be a little out of date).</p> http://stackoverflow.com/questions/119312/dash-vs-underscore/119342#119342 6 Answer by s t for Dash vs. Underscore s t 2008-09-23T06:11:22Z 2008-09-23T06:11:22Z <p>Jeff has some thoughts on this: <a href="http://www.codinghorror.com/blog/archives/000574.html" rel="nofollow">http://www.codinghorror.com/blog/archives/000574.html</a></p> <p>There are drawbacks to both. I would suggest that you pick one and be consistent.</p> http://stackoverflow.com/questions/611565/mapped-drive-system-cannot-find-the-drive-specified Comment by s t on Mapped Drive - "System cannot find the drive specified" s t 2009-03-04T17:27:06Z 2009-03-04T17:27:06Z I think this is probably because explorer.exe is running as non-admin and cmd.exe is running as admin. running net use * \\wp3 at the command line should map it for the administrator. http://stackoverflow.com/questions/445139/how-to-get-program-files-folder-path-not-program-files-x86-from-32bit-wow-pro/445218#445218 Comment by s t on How to get Program Files folder path (not Program Files (x86)) from 32bit WOW process? s t 2009-01-17T01:12:17Z 2009-01-17T01:12:17Z Good point, well made. This is potenitally dangerous territory and we should be aware of the risks. http://stackoverflow.com/questions/445139/how-to-get-program-files-folder-path-not-program-files-x86-from-32bit-wow-pro Comment by s t on How to get Program Files folder path (not Program Files (x86)) from 32bit WOW process? s t 2009-01-17T01:10:28Z 2009-01-17T01:10:28Z Totally, but in this case it really will be in the program files folder. http://stackoverflow.com/questions/445139/how-to-get-program-files-folder-path-not-program-files-x86-from-32bit-wow-pro/445219#445219 Comment by s t on How to get Program Files folder path (not Program Files (x86)) from 32bit WOW process? s t 2009-01-15T00:51:13Z 2009-01-15T00:51:13Z I just hit that problem, I need it to work on XP and Server 2003 x64 too. http://stackoverflow.com/questions/184118/what-programming-book-would-you-not-recommend-to-developers/184138#184138 Comment by s t on What Programming Book would you NOT recommend to Developers? s t 2008-10-08T19:37:28Z 2008-10-08T19:37:28Z Title promised more than it delived :( http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/83753#83753 Comment by s t on What is the single most influential book every programmer should read? s t 2008-09-26T06:51:24Z 2008-09-26T06:51:24Z Over a week and no upvotes for this? For shame, StackOverflow, for shame! Code Complete is probably more important but this made me write better code as soon as I started reading it. http://stackoverflow.com/questions/137921/what-is-your-single-most-effective-interview-question/137927#137927 Comment by s t on What is your single most effective interview question? s t 2008-09-26T05:51:18Z 2008-09-26T05:51:18Z I'm here for the interview, chief! :) http://stackoverflow.com/questions/8170/best-windows-command-line-tutorial-for-beginners/8871#8871 Comment by s t on Best Windows Command Line tutorial for beginners? s t 2008-09-25T23:08:31Z 2008-09-25T23:08:31Z PowerShell in Action is great!