
Windows8 删除右键中的开始屏幕定制菜单
1、打开注册表 regedit.exe
2、定位到 HKEY_CLASSES_ROOTDesktopBackgroundShell
3、删除下面的 VisualMasterStartScreenSettings 项,将包含的 command 项一并删除,
之后刷新下,右键中就没有这个菜单了。
注:操作之前请记得备份下这个项目。
1、打开注册表 regedit.exe
2、定位到 HKEY_CLASSES_ROOTDesktopBackgroundShell
3、删除下面的 VisualMasterStartScreenSettings 项,将包含的 command 项一并删除,
之后刷新下,右键中就没有这个菜单了。
注:操作之前请记得备份下这个项目。
<?php
/*
调用腾讯的API接口
返回结果 var IPData = new Array("114.238.55.147","","江苏省","淮安市");
0 为 IP地址
1 为 null
2 为 省份
3 为 城市
*/
function get_ip_place(){
$ip=file_get_contents("http://fw.qq.com/ipaddress");
$ip=str_replace('"',' ',$ip);
$ip2=explode("(",$ip);
$a=substr($ip2[1],0,-2);
$b=explode(",",$a);
return $b;
}
$ip=get_ip_place();
print_r($ip);
print_r($ip[0]); // 这个就是你当前外网IP地址
print_r($ip[2]); // 这个就是你所在的省份
print_r($ip[3]); //这个就是你所在的城市了
?>