<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Windows &#8211; Manuel Bogner&#039;s Blog</title>
	<atom:link href="https://blog.mbo.dev/archives/category/win/feed" rel="self" type="application/rss+xml" />
	<link>https://blog.mbo.dev</link>
	<description>Solutions to everyday IT problems</description>
	<lastBuildDate>Sat, 04 Jan 2025 13:49:40 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://blog.mbo.dev/wp-content/uploads/2022/11/cropped-cropped-mbo-white_opt-32x32.png</url>
	<title>Windows &#8211; Manuel Bogner&#039;s Blog</title>
	<link>https://blog.mbo.dev</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Forcefully Stop HyperV VM</title>
		<link>https://blog.mbo.dev/archives/2042</link>
		
		<dc:creator><![CDATA[Manuel Bogner]]></dc:creator>
		<pubDate>Sat, 04 Jan 2025 13:49:39 +0000</pubDate>
				<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">https://blog.mbo.dev/?p=2042</guid>

					<description><![CDATA[Get the name as displayed in HyperV of the VM you want to stop and then run:]]></description>
										<content:encoded><![CDATA[
<p>Get the name as displayed in HyperV of the VM you want to stop and then run:</p>



<pre class="wp-block-code"><code>$VMGUID = (Get-VM "vm_name").ID
$VMWMProc = (Get-WmiObject Win32_Process | ? {$_.Name -match 'VMWP' -and $_.CommandLine -match $VMGUID})
Stop-Process ($VMWMProc.ProcessId) -Force</code></pre>



<p></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>iCUE shutdown/reboot bug on Windows 10 &#8211; The memory could not be read</title>
		<link>https://blog.mbo.dev/archives/1329</link>
		
		<dc:creator><![CDATA[Manuel Bogner]]></dc:creator>
		<pubDate>Thu, 29 Oct 2020 00:39:28 +0000</pubDate>
				<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">https://blog.coffeebeans.at/?p=1329</guid>

					<description><![CDATA[With Corsair&#8217;s iCUE (latest version) on my Windows 10 (all updates installed) I got an error dialogue on every shutdown/reboot from iCUE. It was something like the following: The instruction at 0x000000005FC4030B reference memory at 0x000000003ED0860. The memory could not be read. Taken from the Corsair forum this especially effects systems with ASUS soundcards. I [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>With Corsair&#8217;s iCUE (latest version) on my Windows 10 (all updates installed) I got an error dialogue on every shutdown/reboot from iCUE. It was something like the following:</p>



<p><em>The instruction at 0x000000005FC4030B reference memory at 0x000000003ED0860. The memory could not be read.</em></p>



<p>Taken from the <a href="https://forum.corsair.com/v3/showthread.php?t=186971&amp;page=3" target="_blank" rel="noreferrer noopener">Corsair forum</a> this especially effects systems with ASUS soundcards. I have an ASUS Essence STX II and a Corsoir keyboard which requires iCUE for LED config.</p>



<p>I didn&#8217;t want to try switching soundcard drivers to get rid of a keyboard led software problem so I went with the solution to run C:\Windows\SysWOW64\HsMgr.exe as admin. Here the steps I followed (taken from the forum &#8211; thx to the guys investigating this already and posting a solution):</p>



<pre class="wp-block-code"><code>Go to ... C:\Windows\SysWOW64, here you'll find a HsMgr.exe file.
HsMgr.exe is a driver component for Asus, Auzentech, Creative and other sound cards. If you run it as Admin, the error will disappear.
Do this by right clicking it > Properties > Compatibility > Change settings for all users > Run this program as an administrator.

Now just restart your system. The error won't be there anymore the next time you reboot or shut it down.</code></pre>



<p>I didn&#8217;t investigate if this compromises system security but I can confirm that the error is gone.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Windows ln style softlinks with mklink</title>
		<link>https://blog.mbo.dev/archives/1278</link>
		
		<dc:creator><![CDATA[Manuel Bogner]]></dc:creator>
		<pubDate>Tue, 26 May 2020 22:10:49 +0000</pubDate>
				<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">https://blog.coffeebeans.at/?p=1278</guid>

					<description><![CDATA[You can use softlinks (linux: ln -s source target) under windows. The example mklink /D jdk11 jdk-11.0.7.10-hotspot will create a softlink with name jdk11 to folder jdk-11.0.7.10-hotspot in the same directory.]]></description>
										<content:encoded><![CDATA[
<p>You can use softlinks (linux: ln -s source target) under windows.</p>



<pre class="wp-block-code"><code>MKLINK &#91;&#91;/D] | &#91;/H] | &#91;/J]] Link Target

        /D      Creates a directory symbolic link.  Default is a file
                symbolic link.
        /H      Creates a hard link instead of a symbolic link.
        /J      Creates a Directory Junction.
        Link    Specifies the new symbolic link name.
        Target  Specifies the path (relative or absolute) that the new link
                refers to.</code></pre>



<p>The example <strong><em>mklink /D jdk11 jdk-11.0.7.10-hotspot</em></strong> will create a softlink with name jdk11 to folder jdk-11.0.7.10-hotspot in the same directory.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Create .zip for every folder of a directory under Windows 10</title>
		<link>https://blog.mbo.dev/archives/1129</link>
		
		<dc:creator><![CDATA[Manuel Bogner]]></dc:creator>
		<pubDate>Sat, 04 May 2019 00:20:22 +0000</pubDate>
				<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">http://blog.coffeebeans.at/?p=1129</guid>

					<description><![CDATA[Open a terminal and cd to the directory with the folders. Then run the following command: for /f "tokens=* usebackq" %G in (dir /b /a:d "%cd%") do "c:\Program Files\7-Zip\7z.exe" a -r -tzip "%~G.zip" "%~G Make sure you have 7z installed under default installation target. Otherwise it won&#8217;t find the 7z.exe.]]></description>
										<content:encoded><![CDATA[
<p>Open a terminal and cd to the directory with the folders. Then run the following command:</p>



<pre class="wp-block-preformatted">for /f "tokens=* usebackq" %G in (<code>dir /b /a:d "%cd%"</code>) do "c:\Program Files\7-Zip\7z.exe" a -r -tzip "%~G.zip" "%~G</pre>



<p>Make sure you have 7z installed under default installation target. Otherwise it won&#8217;t find the 7z.exe.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>hwclock problems with dual boot</title>
		<link>https://blog.mbo.dev/archives/1061</link>
		
		<dc:creator><![CDATA[Manuel Bogner]]></dc:creator>
		<pubDate>Fri, 28 Oct 2016 15:17:01 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">http://blog.coffeebeans.at/?p=1061</guid>

					<description><![CDATA[My English version of Windows 10 and Ubuntu 16.04 could not agree whether my hwclock is UTC or not. So booting either Window or Linux changed my hwclock and then the time in the other OS was wrong. So I changed my hwclock to UTC and told Windows and Linux that my clock is set [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>My English version of Windows 10 and Ubuntu 16.04 could not agree whether my hwclock is UTC or not. So booting either Window or Linux changed my hwclock and then the time in the other OS was wrong. So I changed my hwclock to UTC and told Windows and Linux that my clock is set to UTC:</p>
<p>Windows:</p>
<pre class="lang:default decode:true ">Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation]
"RealTimeIsUniversal"=dword:00000001</pre>
<p>Linux:</p>
<p>Open the file (as superuser)</p>
<pre class="bbcode_code">/etc/default/rcS</pre>
<p>and add or change <strong>UTC=yes</strong></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Windows 8.1 WinSxS Cleanup</title>
		<link>https://blog.mbo.dev/archives/899</link>
					<comments>https://blog.mbo.dev/archives/899#respond</comments>
		
		<dc:creator><![CDATA[Manuel Bogner]]></dc:creator>
		<pubDate>Wed, 26 Nov 2014 19:51:15 +0000</pubDate>
				<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">http://blog.coffeebeans.at/?p=899</guid>

					<description><![CDATA[See the following link from msdn. There you find commands to cleanup the WinSxS folder: http://msdn.microsoft.com/de-de/library/dn251565.aspx You will need admin rights for doing this ;-)]]></description>
										<content:encoded><![CDATA[<p>See the following link from msdn. There you find commands to cleanup the WinSxS folder:<br />
<a href="http://msdn.microsoft.com/de-de/library/dn251565.aspx">http://msdn.microsoft.com/de-de/library/dn251565.aspx</a></p>
<p>You will need admin rights for doing this ;-)</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.mbo.dev/archives/899/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Start/Stop PostgreSQL under Windows</title>
		<link>https://blog.mbo.dev/archives/894</link>
					<comments>https://blog.mbo.dev/archives/894#respond</comments>
		
		<dc:creator><![CDATA[Manuel Bogner]]></dc:creator>
		<pubDate>Tue, 18 Nov 2014 15:45:31 +0000</pubDate>
				<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">http://blog.coffeebeans.at/?p=894</guid>

					<description><![CDATA[There is a simple way to start/stop postgresql without any need to open the services dialogue: NET START postgresql-x64-9.3 NET STOP postgresql-x64-9.3 Just replace the version in the statements (you only need major and minor). Just skip the -x64 if you still have a 32bit version.]]></description>
										<content:encoded><![CDATA[<p>There is a simple way to start/stop postgresql without any need to open the services dialogue:</p>
<pre class="lang:sh decode:true">NET START postgresql-x64-9.3</pre>
<pre class="lang:sh decode:true">NET STOP postgresql-x64-9.3</pre>
<p>Just replace the version in the statements (you only need major and minor). Just skip the -x64 if you still have a 32bit version.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.mbo.dev/archives/894/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>TortoiseSVN does not save passwords</title>
		<link>https://blog.mbo.dev/archives/741</link>
					<comments>https://blog.mbo.dev/archives/741#respond</comments>
		
		<dc:creator><![CDATA[Manuel Bogner]]></dc:creator>
		<pubDate>Wed, 20 Nov 2013 14:17:29 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">http://blog.coffeebeans.at/?p=741</guid>

					<description><![CDATA[I had the problem that TortoiseSVN didn&#8217;t save passwords anymore. The solution is to delete the folder %APPDATA%subversionauth]]></description>
										<content:encoded><![CDATA[<p>I had the problem that TortoiseSVN didn&#8217;t save passwords anymore. The solution is to delete the folder</p>
<pre><code>%APPDATA%subversionauth</code></pre>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.mbo.dev/archives/741/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Normalemail.dotm in Office 2010</title>
		<link>https://blog.mbo.dev/archives/625</link>
					<comments>https://blog.mbo.dev/archives/625#respond</comments>
		
		<dc:creator><![CDATA[Manuel Bogner]]></dc:creator>
		<pubDate>Mon, 26 Aug 2013 13:42:29 +0000</pubDate>
				<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">http://blog.coffeebeans.at/?p=625</guid>

					<description><![CDATA[My outlook 2010 always wants to save Normalemail.dotm when I close it. To fix this i created a .reg file with the following content and double clicked it: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USERSoftwareMicrosoftOffice14.0WordOptionsWordMail] "ATUserAdded"=dword:00000001 After that the problem was fixed.]]></description>
										<content:encoded><![CDATA[<p>My outlook 2010 always wants to save Normalemail.dotm when I close it. To fix this i created a .reg file with the following content and double clicked it:</p>
<pre>Windows Registry Editor Version 5.00

[HKEY_CURRENT_USERSoftwareMicrosoftOffice14.0WordOptionsWordMail]
"ATUserAdded"=dword:00000001</pre>
<p><span style="line-height: 1.714285714; font-size: 1rem;">After that the problem was fixed.</span></p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.mbo.dev/archives/625/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Bug in htpasswd.exe</title>
		<link>https://blog.mbo.dev/archives/576</link>
					<comments>https://blog.mbo.dev/archives/576#respond</comments>
		
		<dc:creator><![CDATA[Manuel Bogner]]></dc:creator>
		<pubDate>Mon, 10 Jun 2013 07:16:36 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">http://blog.coffeebeans.at/?p=576</guid>

					<description><![CDATA[I tried to configure basic authentication under an apache 2.4.4 and could not find out why my password didn&#8217;t match. Just got the following line in the log though my password was correct: [&#8230;] [auth_basic:error] [pid &#8230;:tid &#8230;] [client ::&#8230;] AH01617: user ___: authentication failure for &#8220;/asd/&#8221;: Password Mismatch, referer: http://localhost/ So I found the [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I tried to configure basic authentication under an apache 2.4.4 and could not find out why my password didn&#8217;t match. Just got the following line in the log though my password was correct:</p>
<p>[&#8230;] [auth_basic:error] [pid &#8230;:tid &#8230;] [client ::&#8230;] AH01617: user ___: authentication failure for &#8220;/asd/&#8221;: Password Mismatch, referer: http://localhost/</p>
<p>So I found the following bug description <a href="https://issues.apache.org/bugzilla/show_bug.cgi?id=54735">https://issues.apache.org/bugzilla/show_bug.cgi?id=54735</a>. To come over this I just had to use httpasswd with the -b flag to provide the password from command line instead of prompting for it.</p>
<pre class="lang:default decode:true crayon-selected">htpasswd -b passwdfile username password</pre>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.mbo.dev/archives/576/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
