当前位置: 操作系统/服务器>windows
本页文章导读:
▪能否使用net user命令更改某个用户的名字?怎么更改 能否使用net user命令更改某个用户的名字?如何更改?比如:系统中有个名字为AAA的用户,现在我想在命令行下使用命令直接更改此用户名为BBB,用net user命令可以实现吗?如何实现?
BatchFile.........
▪ 海量图片删除有关问题 海量图片删除问题OS:Windows2008一个文件夹下有大量的图片,数量过千万,使用Shift+Delete删除需要等待时间1天以上,不使用其它软件(公司电脑不让安装)的情况下如何能够加快删除速度?可.........
▪ cabarc压缩包含子目录的文件夹后,用什么命令解压,该如何处理 cabarc压缩包含子目录的文件夹后,用什么命令解压如题:cabarc -p -r N cabfile.cab *.*压缩一个cabfile.cab文嘉用什么命令可以解压这个文件cabfile.cab
cabarc有解压参数的N是创建X是解压D:\>cabarcMicrosoft.........
[1]能否使用net user命令更改某个用户的名字?怎么更改
来源: 互联网 发布时间: 2014-02-18
能否使用net user命令更改某个用户的名字?如何更改?
比如:系统中有个名字为AAA的用户,现在我想在命令行下使用命令直接更改此用户名为BBB,
用net user命令可以实现吗?如何实现?
BatchFile code
比如:系统中有个名字为AAA的用户,现在我想在命令行下使用命令直接更改此用户名为BBB,
用net user命令可以实现吗?如何实现?
BatchFile code
wmic useraccount where name='AAA' call rename BBB
[2] 海量图片删除有关问题
来源: 互联网 发布时间: 2014-02-18
海量图片删除问题
OS:Windows2008
一个文件夹下有大量的图片,数量过千万,使用Shift+Delete删除需要等待时间1天以上,不使用其它软件(公司电脑不让安装)的情况下如何能够加快删除速度?可以编小脚本,高级语言没有开发环境……
上千万的图片文件,怎么个删除法恐怕也要不少的时间。Shift+Delete 可能前期准备时间长点儿,真的删除起来,全是硬盘速度上问题了,信息提示上的时耗相对应该不算个事儿;如果也要省下这个时间,可以试试命令行窗口下 rd /s /q foldname > nul 这样连同文件夹一般删除,没有任何提示,只会见硬盘在不停地折腾。
另外,这样巨量的文件删除,是可以考虑下备份其它的内容,格式化分区,再恢复其它需要的数据的方式。这样的操作,可能比直接删除那些文件要快捷。
那就在DOS下用删除命令删除
将分区format,或者修改FAT表...反正是要删,只要让操作系统找不到了,然后重新能利用这些空间就行了呗...
你都不能format 还提示什么 修改FAT表.....
试试命令行下删除吧 del /Q /S /F
把不删除的文件备份到其他盘,然后快速格式化就行了.
探讨
上千万的图片文件,怎么个删除法恐怕也要不少的时间。Shift+Delete 可能前期准备时间长点儿,真的删除起来,全是硬盘速度上问题了,信息提示上的时耗相对应该不算个事儿;如果也要省下这个时间,可以试试命令行窗口下 rd /s /q foldname > nul 这样连同文件夹一般删除,没有任何提示,只会见硬盘在不停地折腾。
另外,这样巨量的文件删除,是可以考虑下备份其它的内容,格式化分区,再……
OS:Windows2008
一个文件夹下有大量的图片,数量过千万,使用Shift+Delete删除需要等待时间1天以上,不使用其它软件(公司电脑不让安装)的情况下如何能够加快删除速度?可以编小脚本,高级语言没有开发环境……
上千万的图片文件,怎么个删除法恐怕也要不少的时间。Shift+Delete 可能前期准备时间长点儿,真的删除起来,全是硬盘速度上问题了,信息提示上的时耗相对应该不算个事儿;如果也要省下这个时间,可以试试命令行窗口下 rd /s /q foldname > nul 这样连同文件夹一般删除,没有任何提示,只会见硬盘在不停地折腾。
另外,这样巨量的文件删除,是可以考虑下备份其它的内容,格式化分区,再恢复其它需要的数据的方式。这样的操作,可能比直接删除那些文件要快捷。
那就在DOS下用删除命令删除
将分区format,或者修改FAT表...反正是要删,只要让操作系统找不到了,然后重新能利用这些空间就行了呗...
你都不能format 还提示什么 修改FAT表.....
试试命令行下删除吧 del /Q /S /F
把不删除的文件备份到其他盘,然后快速格式化就行了.
探讨
上千万的图片文件,怎么个删除法恐怕也要不少的时间。Shift+Delete 可能前期准备时间长点儿,真的删除起来,全是硬盘速度上问题了,信息提示上的时耗相对应该不算个事儿;如果也要省下这个时间,可以试试命令行窗口下 rd /s /q foldname > nul 这样连同文件夹一般删除,没有任何提示,只会见硬盘在不停地折腾。
另外,这样巨量的文件删除,是可以考虑下备份其它的内容,格式化分区,再……
[3] cabarc压缩包含子目录的文件夹后,用什么命令解压,该如何处理
来源: 互联网 发布时间: 2014-02-18
cabarc压缩包含子目录的文件夹后,用什么命令解压
如题:
cabarc -p -r N cabfile.cab *.*
压缩一个cabfile.cab文嘉
用什么命令可以解压这个文件
cabfile.cab
cabarc有解压参数的
N是创建
X是解压
D:\>cabarc
Microsoft (R) Cabinet Tool - Version 1.00
Copyright (c) Microsoft Corp 1996. All rights reserved.
Usage: CABARC [<options>] <command> <cabfile> [<filelist...>] [dest_dir]
Commands:
L List contents of cabinet (e.g. cabarc l test.cab)
N Create new cabinet (e.g. cabarc n test.cab *.c app.mak *.h)
X Extract file(s) from cabinet (e.g. cabarc x test.cab foo*.c)
Options:
-c Confirm files to be operated on
-o When extracting, overwrite without asking for confirmation
-m Set compression type [MSZIP | NONE], (default is MSZIP)
-p Preserve path names (absolute paths not allowed)
-P Strip specified prefix from files when added
-r Recurse into subdirectories when adding files (see -p also)
-s Reserve space in cabinet for signing (e.g. -s 6144 reserves 6K bytes)
-i Set cabinet set ID when creating cabinets (default is 0)
-- Stop option parsing
Notes
-----
When creating a cabinet, the plus sign (+) may be used as a filename
to force a folder boundary; e.g. cabarc n test.cab *.c test.h + *.bmp
When extracting files to disk, the <dest_dir>, if provided, must end in
a backslash; e.g. cabarc x test.cab bar*.cpp *.h d:\test\
The -P (strip prefix) option can be used to strip out path information
e.g. cabarc -r -p -P myproj\ a test.cab myproj\balloon\*.*
The -P option can be used multiple times to strip out multiple paths
如题:
cabarc -p -r N cabfile.cab *.*
压缩一个cabfile.cab文嘉
用什么命令可以解压这个文件
cabfile.cab
cabarc有解压参数的
N是创建
X是解压
D:\>cabarc
Microsoft (R) Cabinet Tool - Version 1.00
Copyright (c) Microsoft Corp 1996. All rights reserved.
Usage: CABARC [<options>] <command> <cabfile> [<filelist...>] [dest_dir]
Commands:
L List contents of cabinet (e.g. cabarc l test.cab)
N Create new cabinet (e.g. cabarc n test.cab *.c app.mak *.h)
X Extract file(s) from cabinet (e.g. cabarc x test.cab foo*.c)
Options:
-c Confirm files to be operated on
-o When extracting, overwrite without asking for confirmation
-m Set compression type [MSZIP | NONE], (default is MSZIP)
-p Preserve path names (absolute paths not allowed)
-P Strip specified prefix from files when added
-r Recurse into subdirectories when adding files (see -p also)
-s Reserve space in cabinet for signing (e.g. -s 6144 reserves 6K bytes)
-i Set cabinet set ID when creating cabinets (default is 0)
-- Stop option parsing
Notes
-----
When creating a cabinet, the plus sign (+) may be used as a filename
to force a folder boundary; e.g. cabarc n test.cab *.c test.h + *.bmp
When extracting files to disk, the <dest_dir>, if provided, must end in
a backslash; e.g. cabarc x test.cab bar*.cpp *.h d:\test\
The -P (strip prefix) option can be used to strip out path information
e.g. cabarc -r -p -P myproj\ a test.cab myproj\balloon\*.*
The -P option can be used multiple times to strip out multiple paths
最新技术文章: