Alternatif 1:
| System Key: [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation] Value Name: DisableAutoDaylightTimeSet Data Type: REG_DWORD (DWORD Value) Value Data: (1 = disable daylight-savings adjustment) |
Alternatif 2:
devam »
Yazan İşletim Sistemleri | Yorum (0) »
Windows Time daki “An error occurred getting the status of the last synchronization. access is denied” hatası ile karşılaştırm.
Windows + X > Command Prompt (Admin)
| net stop w32time w32tm /unregister w32tm /register net start w32time |
Windows + R > “services.msc” > Windows Time >
General > Startup Type : Automatic
Lod On > Local System Account > Allow Servisce to interect with desktop
Bilgisayarı Reset atıyoruz.
Yazan İşletim Sistemleri | Yorum (0) »
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | <configuration> <system.webServer> <rewrite> <rules> <rule name="wordpress" patternSyntax="Wildcard"> <match url="*" /> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="index.php" /> </rule> </rules> </rewrite> <staticContent> <clientCache cacheControlMaxAge="10.00:00:00" cacheControlMode="UseMaxAge"/> </staticContent> <httpCompression directory="%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files"> <scheme name="gzip" dll="%Windir%\system32\inetsrv\gzip.dll" staticCompressionLevel="9" /> <dynamicTypes> <add mimeType="text/*" enabled="true" /> <add mimeType="message/*" enabled="true" /> <add mimeType="application/x-javascript" enabled="true" /> <add mimeType="application/json" enabled="true" /> <add mimeType="*/*" enabled="false" /> </dynamicTypes> <staticTypes> <add mimeType="text/*" enabled="true" /> <add mimeType="message/*" enabled="true" /> <add mimeType="application/x-javascript" enabled="true" /> <add mimeType="application/atom+xml" enabled="true" /> <add mimeType="application/xaml+xml" enabled="true" /> <add mimeType="*/*" enabled="false" /> </staticTypes> </httpCompression> <urlCompression doStaticCompression="true" doDynamicCompression="true" /> </system.webServer> </configuration> |
Yazan İşletim Sistemleri | Yorum (0) »