<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Обновление окон в проводнике Windows 8.1]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=10924&amp;type=atom" />
	<updated>2015-09-05T07:41:16Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=10924</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Обновление окон в проводнике Windows 8.1]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=97110#p97110" />
			<content type="html"><![CDATA[<p><strong>teadrinker</strong>, работает <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /><br />Благодарю!</p>]]></content>
			<author>
				<name><![CDATA[avens]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24487</uri>
			</author>
			<updated>2015-09-05T07:41:16Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=97110#p97110</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Обновление окон в проводнике Windows 8.1]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=97109#p97109" />
			<content type="html"><![CDATA[<p>Попробуйте:<br /></p><div class="codebox"><pre><code>WM_COMMAND := 0x111, HWND_BROADCAST := 0xFFFF, Refresh := 41504
PostMessage, WM_COMMAND, Refresh,,, ahk_id %HWND_BROADCAST%</code></pre></div>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2015-09-05T06:49:32Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=97109#p97109</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Обновление окон в проводнике Windows 8.1]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=97108#p97108" />
			<content type="html"><![CDATA[<p>Есть скрипт из коллекции форума для показа/скрытия расширения файлов в проводнике по нажатию на заданную комбинацию клавиш:<br /></p><div class="codebox"><pre><code>1:: ;Показываем/скрываем расширение файлов в проводнике
ID := WinExist(&quot;A&quot;)
; WinGetClass,Class, ahk_id %ID%
; WClasses := &quot;CabinetWClass ExploreWClass&quot;
; IfInString, WClasses, %Class%
Gosub, HiddenFilesExt_Display
Return
HiddenFilesExt_Display:
RootKey = HKEY_CURRENT_USER
SubKey = Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
RegRead, HiddenFiles_Status, % RootKey, % SubKey, HideFileExt
if HiddenFiles_Status = 1
RegWrite, REG_DWORD, % RootKey, % SubKey, HideFileExt, 0 
else 
RegWrite, REG_DWORD, % RootKey, % SubKey, HideFileExt, 1
PostMessage, 0x111, 28931,,, ahk_id %ID%
PostMessage, 0x111, 28931,,, ahk_id 0xFFFF  ;Update Explorer All Windows
PostMessage, 0x111, 28931,,, ahk_class CabinetWClass  ;Update Explorer All Windows
PostMessage, 0x111, 28931,,, ahk_class Progman  ;Update Desktop
Return</code></pre></div><p>В Windows XP работает отлично, а вот в Windows 8.1 меняется только значение в реестре, а обновлять окна Explorer не хочет...<br />Ни одно из приведенных параметров PostMessage в этом скрипте не работает.<br />Узнать параметры для Windows 8.1 через Winspector не получается, так как он ничего не показывает.</p><p>В чем может быть проблема или как можно в Windows 8.1 x64 обновить окна в проводнике?</p>]]></content>
			<author>
				<name><![CDATA[avens]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24487</uri>
			</author>
			<updated>2015-09-05T06:41:28Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=97108#p97108</id>
		</entry>
</feed>
