当前位置: 操作系统/服务器>windows
本页文章导读:
▪该死的简单百宝箱~•••坑了哥啦,该怎么处理 该死的简单百宝箱~•••坑了哥啦我在玩网游的时候用了简单百宝箱这款网游工具,可随后我的网游账号和qq都同时被盗了,可把哥哥给坑死了
恶意插件?你装个瑞星,可以查杀,也是免费.........
▪ 【】 windbg Debuggee not connected 【求助】 windbg Debuggee not connected我的主机系统: win 7虚拟机系统: win xp (vmware 7.1.4)在虚拟机XP系统的boot.ini中添加:multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional Debug" /fastdetect /.........
▪ 哪位高手知道在bat中如何提取系统时间 谁知道在bat中怎么提取系统时间在bat中提取系统时间后进行判断,如果是1日,把文件拷贝到文件名为1的文件夹里;如果是10日,把文件拷贝到文件名为10的文件夹里;如果是20日,把文件拷贝.........
[1]该死的简单百宝箱~•••坑了哥啦,该怎么处理
来源: 互联网 发布时间: 2014-02-18
该死的简单百宝箱~•••坑了哥啦
我在玩网游的时候用了简单百宝箱这款网游工具,可随后我的网游账号和qq都同时被盗了,可把哥哥给坑死了
恶意插件?你装个瑞星,可以查杀,也是免费的
我在玩网游的时候用了简单百宝箱这款网游工具,可随后我的网游账号和qq都同时被盗了,可把哥哥给坑死了
恶意插件?你装个瑞星,可以查杀,也是免费的
[2] 【】 windbg Debuggee not connected
来源: 互联网 发布时间: 2014-02-18
【求助】 windbg Debuggee not connected
我的主机系统: win 7
虚拟机系统: win xp (vmware 7.1.4)
在虚拟机XP系统的boot.ini中添加:
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional Debug" /fastdetect /debug /debugport=com1 /baudrate=115200
vmware 添加虚拟串口:
\\.pipe\com_1
This end is the server
The other end is an application
主机系统 win7 中的 windbg 添加快捷方式,在目标中更改为:
C:\WinDDK\7600.16385.1\Debuggers\windbg.exe
-y D:\DebugSymbos;srv*D:\DebugSymbol*http://msdl.microsoft.com/download/symbols
-k com:port=\\.\pipe\com_1,baud=115200,pipe
虚拟机XP以调试模式启动,运行主机win7系统的 windbg. 给出的错误:
Opened \\.\pipe\com_1
Waiting to reconnect...
最底部显示的: Debuggee not connected.
注:按照网上很多方法都试过了,都是给出的这个错误。求解啊。
- -我也遇到了这个问题,刚解决。
你在Edit virtual machine settings里看下你那个串口是不是叫Serial port 2,如果是,问题就在这里,就是多了那个2。你把这个串口删掉,然后把那个printer也删掉,然后重新添加一个串口就可以了,这个时候串口就叫Serial port了。
这个问题让我纠结了几天啊,希望楼主可以顺利解决这个问题。
我的主机系统: win 7
虚拟机系统: win xp (vmware 7.1.4)
在虚拟机XP系统的boot.ini中添加:
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional Debug" /fastdetect /debug /debugport=com1 /baudrate=115200
vmware 添加虚拟串口:
\\.pipe\com_1
This end is the server
The other end is an application
主机系统 win7 中的 windbg 添加快捷方式,在目标中更改为:
C:\WinDDK\7600.16385.1\Debuggers\windbg.exe
-y D:\DebugSymbos;srv*D:\DebugSymbol*http://msdl.microsoft.com/download/symbols
-k com:port=\\.\pipe\com_1,baud=115200,pipe
虚拟机XP以调试模式启动,运行主机win7系统的 windbg. 给出的错误:
Opened \\.\pipe\com_1
Waiting to reconnect...
最底部显示的: Debuggee not connected.
注:按照网上很多方法都试过了,都是给出的这个错误。求解啊。
- -我也遇到了这个问题,刚解决。
你在Edit virtual machine settings里看下你那个串口是不是叫Serial port 2,如果是,问题就在这里,就是多了那个2。你把这个串口删掉,然后把那个printer也删掉,然后重新添加一个串口就可以了,这个时候串口就叫Serial port了。
这个问题让我纠结了几天啊,希望楼主可以顺利解决这个问题。
[3] 哪位高手知道在bat中如何提取系统时间
来源: 互联网 发布时间: 2014-02-18
谁知道在bat中怎么提取系统时间
在bat中提取系统时间后进行判断,如果是1日,把文件拷贝到文件名为1的文件夹里;如果是10日,把文件拷贝到文件名为10的文件夹里;如果是20日,把文件拷贝到文件名为20的文件夹里
BatchFile code
BatchFile code
@echo off
rem 假设系统日期格式为:2009-06-14 星期日
set day=1%date:~5,2%
set /a day%%=100
copy /y "C:\test\a.txt" "C:\test\%day%"
time /t
rem for DOS/NT
echo exit|%comspec% /k prompt $T$_ | find ":" > time.txt
@echo on
rem supoose the current date is 2009-6-15
rem this bat file will make a file at c:\ as 15 and copy the c:\file into file
ren if you don't want to get out the command you can change the code as @echo off
date /t
set day=1%date:~9,2%
@echo make file as date time .for example 15
md c:\%day%
echo the "c:\files " means what file you want to copy to the datetime file
echo copy /y "c:\file" "c:\%day%"
date
time/t
在bat中提取系统时间后进行判断,如果是1日,把文件拷贝到文件名为1的文件夹里;如果是10日,把文件拷贝到文件名为10的文件夹里;如果是20日,把文件拷贝到文件名为20的文件夹里
BatchFile code
@echo off rem 假设系统日期格式为:2009-06-14 星期日 set day=1%date:~5,2% set /a day%%=100 copy /y "C:\test\a.txt" "C:\test\%day%"探讨
BatchFile code
@echo off
rem 假设系统日期格式为:2009-06-14 星期日
set day=1%date:~5,2%
set /a day%%=100
copy /y "C:\test\a.txt" "C:\test\%day%"
time /t
rem for DOS/NT
echo exit|%comspec% /k prompt $T$_ | find ":" > time.txt
@echo on
rem supoose the current date is 2009-6-15
rem this bat file will make a file at c:\ as 15 and copy the c:\file into file
ren if you don't want to get out the command you can change the code as @echo off
date /t
set day=1%date:~9,2%
@echo make file as date time .for example 15
md c:\%day%
echo the "c:\files " means what file you want to copy to the datetime file
echo copy /y "c:\file" "c:\%day%"
date
time/t
最新技术文章: