1.顯示檔案和隱藏檔案。在當前目錄下shift+右鍵 選擇cmd命令 執行
顯示檔案: attrib -s -h 檔名
隱藏檔案:
attrib -s +h 檔名
2.檢視電腦支援的最大記憶體 在cmd下執行
wmic memphysical get maxcapacity
所得結果單位mb 所得/1024/1024 得到單位g
3.windows+r 輸入
notepad 代開記事本
calc 開啟計算機
4.新建記事本將字尾改成.vbs輸入
domsgbox"你的電腦已經中毒"
loop
要停止的話方法如上輸入
dim wshshell
set wshshell = wscript.createobject("wscript.shell")
wshshell.run "taskkill /im wscript.exe /f ",0,true
點選播報語音輸入
createobject("sapi.spvoice").speak "歡迎光臨我的電腦"
5.聊天內容制定傳送次數 字尾.vbs 複製內容 點選檔案 到對話方塊
set
wshshell=wscript.createobject("wscript.shell")
'指定視窗標題欄
fori=1
to99
'迴圈次數
wscript.sleep 100
'間隔時間 毫秒
wshshell. sendkeys "^v"
'貼上wshshell. sendkeys i
wshshell. sendkeys "%s"
'傳送 alt+s
next
6.bat直接執行mysql命令
@echo off
d:cd d:\xampp\mysql\bin
mysql -u root -h 127.0.0.1 -proot -e"use huayigou;select * from promo_info"
cmd /k
7.bat開啟瀏覽器
@echo off
path=%path%; c:\program files\internet explorer\iexplore.exe
start iexplore
8.bat查詢電腦上.mp4檔案
@dir>1.txt /s /a /b d:\*.mp4
晚上擺弄的小玩意
include void p char s,int a void f char s,int a int main 我想用hacker的手段來修改f函式的返回位址,可惜的是一直沒有成功,不過倒是把引數值給改了,列印了hi和2之後就是段錯誤,怎樣解決這個段錯誤,暫還沒有辦法。直接看main函式內生成的彙...
收集的一些小玩意
define setbit x,y x 1 y 0x01 獲取的某一位的值 define int to float int number float int number 整型按位轉化為浮點 define float to int float number int float number 浮點按位...
前端的小玩意(2)jQuery的選擇器大全
34 選擇器 普通選擇方法,略 選擇其中的c,要求是b裡的c 方法 a b c 關鍵之處是.a b c之間要有空格。下面轉乙個帖子 myelement 選擇id值等於myelement的元素,id值不能重複在文件中只能有乙個id值是myelement所以得到的是唯一的元素 div 選擇所有的div標...