active questions tagged windows-sdk - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T02:07:43Z http://stackoverflow.com/feeds/tag/windows-sdk http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1867416/building-visual-studio-2008-setup-projects-with-the-windows-7-sdk 0 Building Visual Studio 2008 Setup projects with the Windows 7 SDK emddudley 2009-12-08T14:44:09Z 2009-12-08T15:12:48Z <p>Is it possible to build a Visual Studio 2008 Setup project with only the Windows 7 SDK installed?</p> <p>My setup project refuses to build because it can't find "C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bootstrapper\", part of the Windows 6 SDK. I would have thought that the 7 SDK would have everything that the setup project needs.</p> <p>A related question: <a href="http://stackoverflow.com/questions/413005/where-can-i-aquire-the-windows-6-0-bootstrapper-files-for-vs">Where can I aquire the Windows 6.0 Bootstrapper files for VS?</a></p> http://stackoverflow.com/questions/1837853/unmasking-a-password-field-in-windows 0 Unmasking a password field in windows. senseful 2009-12-03T05:32:49Z 2009-12-03T05:40:51Z <p>I know there are many 3rd party applications that provide this functionality. I'm wondering how they work.</p> <p>Is it not simply enough to just send the <a href="http://msdn.microsoft.com/en-us/library/bb761653%28VS.85%29.aspx" rel="nofollow">EM_SETPASSWORDCHAR</a> message to the passworded control with a wParam value of 0? </p> <p>This is what the Windows SDK says about the wParam:</p> <blockquote> <p>wParam<br> The character to be displayed in place of the characters typed by the user. If this parameter is zero, the control removes the current password character and displays the characters typed by the user.</p> </blockquote> <p>So what I'm wondering is if this is the right way to implement this feature, or if applications that do reveal the passwords of edit controls are using something a lot more complicated?</p> <p><strong>Edit:</strong> The edit control that is password protected is not in my own application. It is some random 3rd party software I have running which saved my password. I am trying to retrieve the contents of this field. Thus, I want to create an application that interacts with this 3rd party software.</p> http://stackoverflow.com/questions/1060775/how-does-winver-or-win32winnt-affect-operating-system-version-as-shown-by-dumpb 0 How does WINVER or WIN32_WINNT affect operating system version as shown by dumpbin wageoghe 2009-06-29T21:55:55Z 2009-11-10T12:14:48Z <p>We have an existing (old) codeline that we have recently converted from VC6 to VS2008 (converting to VS2005 along the way). After our conversion, all (or most) of our vcproj files set WINVER to 0x0500 via the Preprocessor Settings. In quite a few of our precompiled headers (typically stdafx.h), WINVER is set to 0x0500 (some still set it to 0x0400). If I use dumpbin /headers on our main exe, it shows that the Operating System Version is 5.0 (Windows 2000). </p> <p>After changing the vcproj preprocessor settings so that WINVER and WIN32_WINNT are 0x0501 and making a similar change in the stdafx.h file and rebuilding, dumpbin stil shows that the operating system version is 5.0.</p> <p>I have also created a brand new console app (as well as a brand new MFC app) using VS2008 and built them. Those exes also show an operating system version of 5.0, even though WINVER (and WIN32_WINNT), as set via the targetver.h file, is 0x0600.</p> <p>I would have guessed that setting WINVER and/or WIN32_WINNT to 0x0501 or 0x0600 would have some effect on the operating system version shown by dumpbin. Am I right, should I expect dumpbin to show an operating system version corresponding to WINVER and/or WIN32_WINNT?</p> <p>I have read some good articles on this ("Using the Windows headers" on msdn, "What is the difference between WINVER..." on The Old New Thing, and this particularly interesting one: <a href="http://blogs.msdn.com/dsvc/archive/2009/06/19/troubleshooting-not-a-valid-win32-application-error-at-the-startup.aspx" rel="nofollow">http://blogs.msdn.com/dsvc/archive/2009/06/19/troubleshooting-not-a-valid-win32-application-error-at-the-startup.aspx</a></p> <p>While it is probably not a huge issue exactly what version appears in the operating system version field, we would like to understand the behavior and be able to do the "right" thing to ensure that we are using these macros and settings correctly.</p> <p>Thanks for any help</p> http://stackoverflow.com/questions/1282464/how-to-integrate-msdn-library-sql-server-books-online-and-windows-sdk-help 0 How to integrate MSDN Library, SQL Server Books Online, and Windows SDK Help? Jeffrey Sharp 2009-08-15T18:04:31Z 2009-11-03T23:42:27Z <h2>The Short Version:</h2> <p>I want a single, comprehensive MSDN Library, up-to-date and integrated with F1 help in all Microsoft development tools.</p> <h2>The Long Version:</h2> <p>There are at least three products that want to install documentation on my workstation:</p> <ol> <li>Visual Studio 2008 wants to install MSDN Library.</li> <li>SQL Server 2008 wants to install Books Online, a subset of MSDN Library.</li> <li>Windows 7 SDK wants to install its own subset of MSDN Library.</li> </ol> <p>Although all of these documentation sets are taken from the same source (MSDN Library), they do not integrate well. The installers leave numerous Start menu shortcuts (I have four), each yielding a different set of content. Some topics are exclusive to one set, while other topics are shared. An obsolete revision of a topic can appear in one content set, while another set has the up-to-date revision. Duplicate copies of the same topic can appear within the same content set.</p> <p>I was able to resolve some duplication of topics via <a href="http://msdn.microsoft.com/en-us/library/ms166018.aspx" rel="nofollow">this article</a>. The key text is near the bottom:</p> <blockquote> <p>...two copies of SQL Server 2008 Books Online appear in the table of contents. One of these was installed by the MSDN Library, and the other by SQL Server. To avoid duplicate SQL Server 2008 Books Online topics in search and index results, remove the MSDN Library copy of SQL Server 2008 Books Online.</p> </blockquote> <p>I tried something similar with the Windows 7 SDK. I removed the Win32 topics from the MSDN Library, then let the SDK install its documentation. I now have up-to-date Win32 topics, but they are not integrated at all with the other MSDN content.</p> <p>Is there any way to get a unified MSDN Library and integrate it with the tools?</p> http://stackoverflow.com/questions/1645397/programmatically-select-files-using-c 0 Programmatically select files using C# Sujay Ghosh 2009-10-29T17:41:52Z 2009-11-03T23:02:06Z <p>When the user selects file(s) or/ and folder(s) , I want to know the names of the selected file(s) or/and folder(s) programmatically. </p> <p>I think that if I send the message lvm_selected to the explorer window, it might return me the selected item.</p> <p>But as this is just a thought, it would be nice if anyone can help me out it in letting me know the proper way .</p> <p>I would prefer this in C#, but C++ shall also be fine.</p> <p>Thanks in advance .</p> http://stackoverflow.com/questions/17670/suitable-alternative-to-cryptencrypt 1 Suitable alternative to CryptEncrypt geocoin 2008-08-20T09:37:02Z 2009-10-30T19:52:07Z <p>We have a situation in our product where for a long time some data has been stored in the application's database as SQL string (choice of MS SQL server or sybase SQL anywhere) which was encrypted via the Windows API function <a href="http://msdn.microsoft.com/en-us/library/aa379924.aspx" rel="nofollow">CryptEncrypt.</a> (direct and decryptable)</p> <p>The problem is that CryptEncrypt can produce NULL's in the output, meaning that when it's stored in the database, the string manipulations will at some point truncate the ciphertext.</p> <p>Ideally we'd like to use an algo that will produce cyphertext that doesn't contain NULLs as that will cause the least amount of change to the existing databases (changing a column from string to binary and code to deal with binary instead of strings) and just decrypt existing data and re-encrypt with the new algo at database upgrade time.</p> <p>The algorithm doesn't need to be the most secure, as the database is already in a reasonably secure environment (not an open network / teh interwebs) but does need to bebetter than ROT13 (which I can almost decrypt in my head now!)</p> <p>Cheers</p> <p>edit: btw, any particular reason for changing ciphertext to cyphertext? ciphertext seems more widely used...</p> http://stackoverflow.com/questions/1519743/vc-compiler-for-qt-creator 0 VC++ compiler for Qt Creator rpg 2009-10-05T12:16:32Z 2009-10-08T14:28:23Z <p>Hi,</p> <p>I want to use the VC++ toolset to build programs for XP and Vista, but I do not want to buy the IDE, because I want to use Qt Creator.</p> <p>I would download the Windows SDK and the Windows Debugging Tools, but I'm not sure if this includes everything that I need (i.e: compiler, linker, nmake, debuggers). Has anyone used this approach? How did it go? </p> <p>Note: I know about VC++ Express, but that version of the compiler has certain features disabled AFAIK.</p> <p><strong>Later edit:</strong></p> <p>I want to know if I can use the SDK + Debugtools before I download 2GB of data. Personal experiences are highly appreciated. MSDN links are not. :)</p> http://stackoverflow.com/questions/1492907/video-recording-problems-on-vista-business-using-windows-sdk 0 Video recording problems on Vista Business using Windows SDK melculetz 2009-09-29T14:28:30Z 2009-09-29T14:28:30Z <p>Has anybody encountered problems with camera recording to wmv file format on Vista Business x64 using Windows SDK? I am using a Logitech quickcam 9000 pro webcam and aparently the resulting video is invalid - it can be played with Windows Media Player but while trying to use the "WMVCopy" sample from Microsoft SDK Samples, I've come across an hr=0x8000ffff error.</p> <p>I mention that on other systems and/or other cameras the resulting video is valid.</p> http://stackoverflow.com/questions/1452770/windows-server-2003-platform-sdk 0 Windows Server 2003 platform SDK George2 2009-09-21T03:28:16Z 2009-09-21T03:54:07Z <p>Hello everyone,</p> <p>I am using Windows Server 2003 x64 Enterprise with SP2 and I want to install platform SDK.</p> <p>But all I find is from here, and it is called Windows® Server 2003 SP1 Platform SDK. I am confused about SP1. For my platform, should I use this version of platform SDK or some other later version (I think there should be SP2 platform SDK, but I did not find out.)</p> <p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=a55b6b43-e24f-4ea3-a93e-40c0ec4f68e5&amp;displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?familyid=a55b6b43-e24f-4ea3-a93e-40c0ec4f68e5&amp;displaylang=en</a></p> <p>thanks in advance, George</p> http://stackoverflow.com/questions/1322507/windows-media-services-2008-programming 0 Windows Media Services 2008 Programming Uchitha 2009-08-24T13:42:36Z 2009-08-28T04:24:01Z <p>Hi All,</p> <p>I'm looking in to Windows Media Services 2008 development. I've been able to set it up and create a publish point using Server Manager in Win 2008. But what I really want to do is to do this programatically.</p> <p>I'm currently downloading windows 2008 SDK since it should have support for media services programming. What I want to know is<br /> - Whether any of you had done this before?<br /> - What are the challenges I should expect?<br /> - Will the SDK have manged code for media services?</p> <p>Thanks All!</p> <p>Uchitha.</p> http://stackoverflow.com/questions/1102689/windowssdkdir-is-not-set-correctly-in-visual-studio-2008 2 WindowsSdkDir is not set correctly in Visual Studio 2008? Roger Lipscombe 2009-07-09T09:04:15Z 2009-07-09T09:25:04Z <p>I'm attempting to build some C++ code that requires the Windows 7.0 SDK header files and libraries. My VC++ Directories is set to:</p> <pre><code>$(VCInstallDir)include $(VCInstallDir)atlmfc\include $(WindowsSdkDir)\include $(WindowsSdkDir)\common\include $(FrameworkSDKDir)include </code></pre> <p>My <code>$(WindowsSdkDir)</code> variable <em>should</em> be set to <code>C:\Program Files\Microsoft SDKs\Windows\v7.0\</code> -- I've used the SDK's "Visual Studio Registration" configuration tool to set it, and it looks correct in the registry. I've checked under <code>HKLM\SOFTWARE\Microsoft\Microsoft SDKs\Windows</code> (and the same in <code>Wow6432Node</code>.</p> <p>Despite this, Visual C++ is still picking up header files from <code>C:\Program Files\Microsoft SDKs\Windows\v6.0A\</code></p> <p>What's wrong, and how do I fix it?</p> http://stackoverflow.com/questions/238631/where-is-pktextract-exe-installed 0 where is Pktextract.exe installed? DanJ 2008-10-26T21:08:11Z 2009-06-25T15:50:54Z <p>I have Visual Studio 2008 and the Windows SDK for Windows Server 2008 and .NET Framework 3.5 installed. I believe that is the latest platform SDK.</p> <p>I'm trying to build a signed dll to be installed in SxS. All the tutorials explain to use a tool called pktextract.exe which is part of the SDK, but I can't seem to find the tool. All the other tools such as makecert, mt, makecat exist.</p> <p>Was pktextract replaced by some other tool in the latest version of the sdk?</p> <p>Thanks for the help.</p> http://stackoverflow.com/questions/897300/how-to-set-amcaps-default-color-space-to-yuy2 1 How to set amcap's default color space to YUY2? Rahul2047 2009-05-22T10:49:31Z 2009-05-22T14:10:59Z <p>Hi,</p> <p>AMcap is a app for capturing video or to preview from webcam. Its source code comes with Microsoft Windows SDK as sample.</p> <p>I want to (bypass the following process of user interaction in amcap code or say want to) set it as default:</p> <p>Ampcap menu</p> <pre><code> Options Video Capture Pin ... Color Space/Compression: YUY2 Output size: 1600x1200 </code></pre> <p>I have a compatible webcam and works fine on changing manually to YUY2 and 1600x1200 in AMcap app.</p> <p>By default it is:</p> <pre><code> Color Space/Compression: MJPG Output size: 160x120 </code></pre> <p>I tried to find 'YUY2' string in whole project, but I could not find it, so that I could hardcode it. It seems it is created dynamically and then operated; refer: in the file amcap.cpp nearby line no 3395.</p> <p>Please help.</p> <p>-Rahul</p> http://stackoverflow.com/questions/894823/windows-7-sdk-rc-beta-version 0 Windows 7 SDK RC & Beta version Sarath 2009-05-21T19:59:05Z 2009-05-21T20:26:12Z <p>Dear All,</p> <p>I've download Windows 7 SDK which was downloaded at the time of the beta release. Now I upgraded to RC and trying with some Direct2D samples. But I can't create the factory pointer using D2D1CreateFactory API. It's always returns NULL. Even the samples downloaded from MSDN is also not working well. </p> <p><a href="http://msdn.microsoft.com/en-us/library/dd756650%28VS.85%29.aspx" rel="nofollow">There are some changes from Beta - RC</a></p> <p>Is this because of the version mismatch of SDK? </p> http://stackoverflow.com/questions/442476/how-to-get-the-windows-sdk-folder-in-msbuild 3 How to get the Windows SDK folder in MSBuild? divo 2009-01-14T10:05:37Z 2009-05-11T18:38:10Z <p>What would be the way to retrieve the Windows SDK folder in an MSBuild task?</p> <p>Using the generateBootstrapper task I'm creating a bootstrapper for my setup to be able to install the pre-requisites. This task needs the path to the folder where the pre-requisite packages are located, i.e. the Windows SDK folder </p> <pre><code>"C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bootstrapper\Packages\" </code></pre> <p>when using Visual Studio 2008. So far I have been using a hard-coded path but this won't work on any system. Is there a better way to get the path?</p> <p>This is my build script:</p> <pre><code>&lt;Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"&gt; &lt;ItemGroup&gt; &lt;BootstrapperFile Include="Microsoft.Net.Framework.2.0"&gt; &lt;ProductName&gt;.NET Framework 2.0&lt;/ProductName&gt; &lt;/BootstrapperFile&gt; &lt;BootstrapperFile Include="Microsoft.Windows.Installer.3.1"&gt; &lt;ProductName&gt;Windows Installer 3.1&lt;/ProductName&gt; &lt;/BootstrapperFile&gt; &lt;/ItemGroup&gt; &lt;Target Name="Bootstrapper"&gt; &lt;GenerateBootstrapper ApplicationFile="mySetup.msi" Culture="de-DE" ApplicationName="My Application" OutputPath="$(OutDir)\de-DE" BootstrapperItems="@(BootstrapperFile)" Path="C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bootstrapper\Packages\" /&gt; &lt;GenerateBootstrapper ApplicationFile="mySetup.msi" Culture="en-US" ApplicationName="My Application" OutputPath="$(OutDir)\en-US" BootstrapperItems="@(BootstrapperFile)" Path="C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bootstrapper\Packages\" /&gt; &lt;/Target&gt; &lt;/Project&gt; </code></pre> http://stackoverflow.com/questions/843432/volume-size-on-a-quota-disk 0 Volume Size on a Quota disk CiNN 2009-05-09T14:43:35Z 2009-05-09T14:43:35Z <p>Can one get the volume total size being a normal user ?<br> <code>GetDiskFreeSpaceEx</code> does return the Total Number Of Free Bytes but not the Total Bytes.<br> So the only Total Bytes i get are those of the quota<br> using DeviceIoControl with <code>IOCTL_DISK_GET_LENGTH_INFO</code> doesn't seem to work with non admin rights.</p> http://stackoverflow.com/questions/494928/when-do-you-need-the-windows-sdk-for-msbuild 2 When do you need the Windows SDK for MSBuild? Jacob 2009-01-30T09:15:33Z 2009-01-30T09:32:32Z <p>I'm setting up my first build server for .NET 3.5 projects, and found this interesting line in the MSBuild log after a successful build of a simple test application:</p> <blockquote> <p>Could not locate the expected version of the Microsoft Windows SDK. Looked for a location specified in the "InstallationFolder" value of the registry key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v6.0A". If your build process does not need the SDK then this can be ignored.</p> </blockquote> <p>When exactly would your build process need the SDK? I don't want to install it on the build server if it's not going to be necessary, but I also don't want to discover that I need it by having a build mysteriously break.</p> <p>At the moment, I only have .NET Framework 3.5 SP1 installed on the server.</p> http://stackoverflow.com/questions/305018/launching-aptana-studio-causes-pdhenumobjects-to-take-up-90-cpu 0 Launching Aptana Studio causes PdhEnumObjects() to take up 90% CPU Sammy 2008-11-20T11:35:35Z 2008-11-20T11:35:35Z <p>Hi, </p> <p>I'm making calls to pdhenumobjects() to get performance stats, which is working fine for me until I launch Aptana Studio. </p> <p>/////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////// </p> <pre><code>DWORD dwTemp = 0; PDH_STATUS stat; // this is just to refresh our object data stat = PdhEnumObjects(NULL, NULL, NULL, &amp;dwTemp, PERF_DETAIL_WIZARD, true); </code></pre> <p>/////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////// </p> <p>Once I launch the studio, CPU usage jumps to 100% and it takes about 30 secs for it to service this call. Here is the thread stack when the CPU hits 100%. </p> <p>/<strong>****************************************************************</strong>/<br /> ntdll.dll!KiFastSystemCallRet<br /> perfproc.dll!CollectSysProcessObjectData+0x163<br /> ADVAPI32.dll+0x71013<br /> ADVAPI32.dll!IsTextUnicode+0xc691<br /> ADVAPI32.dll!WmiReceiveNotificationsW+0xe3c<br /> ADVAPI32.dll!RegQueryValueExW+0x8c<br /> pdh.dll!PdhGetCounterTimeBase+0x2b99<br /> pdh.dll!PdhLookupPerfIndexByNameA+0x9be<br /> pdh.dll!PdhEnumMachinesA+0x109<br /> pdh.dll!PdhEnumObjectsHA+0x1a9<br /> pdh.dll!PdhEnumObjectsA+0xa5<br /> AeXSystemPerformance.dll!CSystemPerformance::CacheInstanceNames+0x301<br /> RPCRT4.dll!CheckVerificationTrailer+0x70<br /> RPCRT4.dll!NdrStubCall2+0x215<br /> RPCRT4.dll!NdrCStdStubBuffer2_Release+0x260<br /> OLEAUT32.dll!DllGetClassObject+0x182<br /> ole32.dll!StgGetIFillLockBytesOnFile+0x10439<br /> ole32.dll!StgGetIFillLockBytesOnFile+0x103e3<br /> ole32.dll!CoReleaseMarshalData+0x7dc<br /> ole32.dll!CoReleaseMarshalData+0x701<br /> ole32.dll!DcomChannelSetHResult+0x5ba<br /> ole32.dll!StgGetIFillLockBytesOnFile+0x10643<br /> ole32.dll!StgGetIFillLockBytesOnFile+0x101c4<br /> ole32.dll!StgGetIFillLockBytesOnFile+0x105fa<br /> ole32.dll!DcomChannelSetHResult+0x5f4<br /> ole32.dll!DcomChannelSetHResult+0x42a<br /> USER32.dll!GetDC+0x6d<br /> USER32.dll!GetDC+0x14f<br /> USER32.dll!GetWindowLongW+0x127<br /> USER32.dll!DispatchMessageW+0xf<br /> ole32.dll!CoFreeUnusedLibrariesEx+0x23d<br /> ole32.dll!CoGetObject+0x2275<br /> ole32.dll!CoGetObject+0x21a8<br /> ole32.dll!StringFromGUID2+0x5da<br /> kernel32.dll!GetModuleFileNameA+0x1b4<br /> /<strong>****************************************************************</strong>/<br /> Please help. Thanks in advance.<br /> Samrat. </p>