最近偶然碰到一个比较不错的系统清理软件: Glary Utilities
可以说是英文版的系统优化大师,哈哈!
好处呢就是个人使用是免费的。
在国内是很难打开Google相关服务的,比如google.com和gmail.com…
其中一个重要原因就是DNS污染太严重。怎么办呢?只能手工指定DNS解析了。
附件是一个hosts文件,你可以用这个文件来替换Windows下的hosts文件来修正DNS污染问题。
现在微软提供Windows10的免费升级了。但是如果需要彻底格式化重装系统的话,没Key怎么办?
哈哈,不多说了。碰到类似情况的话用这么这段代码就可以查看当前Windows的CDKEY了。
Option Explicit Dim objshell,path,DigitalID, Result Set objshell = CreateObject("WScript.Shell") 'Set registry key path Path = "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\" 'Registry key value DigitalID = objshell.RegRead(Path & "DigitalProductId") Dim ProductName,ProductID,ProductKey,ProductData 'Get ProductName, ProductID, ProductKey ProductName = "Product Name: " & objshell.RegRead(Path & "ProductName") ProductID = "Product ID: " & objshell.RegRead(Path & "ProductID") ProductKey = "Installed Key: " & ConvertToKey(DigitalID) ProductData = ProductName & vbNewLine & ProductID & vbNewLine & ProductKey 'Show messbox if save to a file If vbYes = MsgBox(ProductData & vblf & vblf & "Save to a file?", vbYesNo + vbQuestion, "BackUp Windows Key Information") then Save ProductData End If 'Convert binary to chars Function ConvertToKey(Key) Const KeyOffset = 52 Dim isWin8, Maps, i, j, Current, KeyOutput, Last, keypart1, insert 'Check if OS is Windows 8 isWin8 = (Key(66) \ 6) And 1 Key(66) = (Key(66) And &HF7) Or ((isWin8 And 2) * 4) i = 24 Maps = "BCDFGHJKMPQRTVWXY2346789" Do Current= 0 j = 14 Do Current = Current* 256 Current = Key(j + KeyOffset) + Current Key(j + KeyOffset) = (Current \ 24) Current=Current Mod 24 j = j -1 Loop While j >= 0 i = i -1 KeyOutput = Mid(Maps,Current+ 1, 1) & KeyOutput Last = Current Loop While i >= 0 keypart1 = Mid(KeyOutput, 2, Last) insert = "N" KeyOutput = Replace(KeyOutput, keypart1, keypart1 & insert, 2, 1, 0) If Last = 0 Then KeyOutput = insert & KeyOutput ConvertToKey = Mid(KeyOutput, 1, 5) & "-" & Mid(KeyOutput, 6, 5) & "-" & Mid(KeyOutput, 11, 5) & "-" & Mid(KeyOutput, 16, 5) & "-" & Mid(KeyOutput, 21, 5) End Function 'Save data to a file Function Save(Data) Dim fso, fName, txt,objshell,UserName Set objshell = CreateObject("wscript.shell") 'Get current user name UserName = objshell.ExpandEnvironmentStrings("%UserName%") 'Create a text file on desktop fName = "C:\Users\" & UserName & "\Desktop\WindowsKeyInfo.txt" Set fso = CreateObject("Scripting.FileSystemObject") Set txt = fso.CreateTextFile(fName) txt.Writeline Data txt.Close End Function
复制下来以后另存为一个vbs文件,比如”BackupWindowsKey.vbs”。然后双击执行就可以看到序列号了。
Refer: http://winaero.com/blog/how-to-view-your-product-key-in-windows-10-windows-8-and-windows-7/
一些时候需要机器启动时能自动登录Windows。但是又不想把用户密码设置为空。
运行 – netplwiz
然后取消“用户必须输入密码登录”的选项,然后输入用户密码。
Duang~ Done!
We notified you earlier that Microsoft was planning to prevent old versions of Skype from working. Since yesterday, all versions of Skype below Skype 6.13 for Windows and Skype 6.14 for OS X are blocked and do not allow you to sign in. If you are not happy with the latest bloated version with obtrusive ads, here is a temporary workaround which will allow you to bypass the version check and run Skype 5.
Here are step-by-step instructions, please follow them carefully.
Update: our reader “Raven Killer” has suggested the following solution (and I can confirm that it works):
Another solution is as follows:
%APPDATA%\Skype
There you will find your config.xml file.
So, you need to have two binaries on your PC – one for Skype 3.8 to generate the required config section, and another for regular use. This is not handy, but Windows users have no other solution at the moment, unlike Linux users of Skype where Skype is still usable and does not have ads. (viaskypeopensource),
现在网上下载软件风险越来越大了,时不时你的浏览器就被劫持了,时不时弹出各种广告窗口。
咋办?试试下面几个软件吧:
如果还是解决不了…. 你就只有重装了 😀
偶然发现一份DDNS服务列表,分享一下…
Enjoy~
Update: 2019/02/03
硬盘用着用着就满了,都不知道是被什么文件占用了。大家有这种感觉么?
明明几个T的硬盘,装了没多少东西怎么就满了?
下面介绍几个可以帮你找出硬盘空间为什么被吃掉的软件:
1. WizTree
2. Windirstat
拿走不谢~ 😀
在Ubuntu中是没有chkconfig这个命令的,如果想要在Ubuntu里面使用类似Chkconfig的命令怎么办呢?
可以试试sysv-rc-conf命令,如果没有安装的话,可以使用apt-get install来安装这个命令。就可以以模拟图形界面的方式来配置各个service的runlevel了。
另外Ubuntu使用Upstart来替代来了传统的sysvinit,详细的使用方法参加:
https://help.ubuntu.com/community/UpstartHowto