2022年8月1日星期一
我在天台屋的日子
2022年7月13日星期三
Missing all file permissions on windows server(any version) after save an office document.(Word,Excel or others)
The Microsoft support let us know that this is definitely a Defender issue going back to an update released. We had to apply this command on the PC which is using Microsoft Defender to resolve the issue:
Open Power Shell use this command
powershell
Enter
Get-MpComputerStatus
check AMRunningMode
If it is running(Microsfot Defender) that shows standard or passive mode than
key in the command in the power shell to disable the network files scanning function in Microsoft Defender.
Set-MpPreference -DisableScanningNetworkFiles $true
I wish the above procedures can help you fix the problem. God bless you.
2022年5月21日星期六
Turn win7 or win 10 into Wireless router( desktop or notebook computer must with both LAN and Wireless interface cards)
Use command prompt with admin rights
NETSH WLAN show drivers
confirm the wireless interface is support the function
Hosted network supported : Yes
NETSH WLAN set hostednetwork mode=allow ssid=ssid key=passphase
NETSH WLAN start hostednetwork
NETSH WLAN stop hostednetwork
Other useful command
NETSH WLAN set hostednetwork mode=allow
NETSH WLAN set hostednetwork mode= disallow
NETSH WLAN set hostednetwork ssid=New_SSID
NETSH WLAN set hostednetwork key=New_Passphrase
NETSH WLAN show hostednetwork
NETSH WLAN show hostednetwork setting=security
If you want to remove the setting completely. Please do this as below:
User Regedit
HKEY_LOCAL_MACHINE\system\currentcontrolset\services\wlansvc\parameters\hostednetworksettings
delete this DWORD in the above registry
HostedNetworkSettings
2022年2月16日星期三
Enable TLS 1.0 and TLS 1.1 in JAVA 1.8.0_321
Edit the JRE_HOME/lib/security/java.security file (Example: C:\program files\java\lib\security\java.security or C:\program files (x86)\java\lib\security\java.security).
Find the line similar like this:
jdk.tls.disabledAlgorithms=SSLv3, TLSv1, TLSv1.1, RC4, DES, MD5withRSA, \
and remove the TLSv1, TLSv1.1
the line will be like this
jdk.tls.disabledAlgorithms=SSLv3, RC4, DES, MD5withRSA, \
2022年1月29日星期六
SMB Printer sharing problem with error code 0x0000011b
This problem is caused in the Host PC (after some windows update) so just change the setting in the HOST PC connected with the printer only. Do not need to modify any setting in the client PC.
In the Registry Editor , navigate to ‘Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print’, then right click in the blank space and choose ‘DWORD (32-bit) Value’
Rename the NEW Key DWORD value to ‘RpcAuthnLevelPrivacyEnabled’
confirm the value is "0" zero
And then restart the Printer spooler service
Key in services.msc in the search console.
Find the printer spooler service and right click and select restart.
Wait for the restart and go to the client PC try to print it again.
It should be OK now.
God bless you. Jesus loves you.