dim WSHshellA set WSHshellA = wscript.createobject(wscript.shell) WSHshellA.run cmd.exe /c shutdown -r -t 60 -c 说我是猪,不说我是猪就一分钟关你机,不信,试试··· ,0 ,true dim a a = inputbox (说我是猪,就不关机,快撒,说 我是猪 ,说不说,不说,8000,7000) WSHshellA.run cmd.exe /c shutdown -a msgbox chr(13) + chr(13) + chr(13) + 哈哈哈哈,真过瘾 是不是这样
解决方法:1.在“格式”菜单下,单击“幻灯片设计”。2.在任务窗格中,单击“配色方案”,再单击最下面的“编辑配色方案”。3.单击“自定义”选项卡。4.在“配色方案颜色”之下,单击“强调文字和超链接”或“强调文字和尾随超链接”,再单击“更改颜色”。选择你需要的颜色即可。祝你好运喽:)
如何在fiddler script中修改cookie cookie其实就是request 中的一个header. // 删除所有的cookie osession.orequest.headers.remove(cookie); // 新建cookie osession.orequest.headers.add(cookie, username=testname;testpassword=p@ssword1); 注意: fiddler script不能直接删除或者编辑单独的一个cookie, 你需要用replace方法或者正则表达式的方法去操作cookie的string static function onbeforerequest(osession: session) { if (osession.hostnameis('www.example.com') && osession.uricontains('pagewithcookie') && osession.orequest.headers.contains(cookie)) { var scookie = osession.orequest[cookie]; //用replace方法或者正则表达式的方法去操作cookie的string scookie = scookie.replace(cookiename=, ignoreme=); osession.orequest[cookie] = scookie; }
更多资讯