我需要一个批处理文件来向
Windows中的hosts文件添加一条记录,但是我不需要一个文件追加写入,因为我想检查这条记录是否已经存在.有可能吗?
type "%SystemRoot%\system32\drivers\etc\hosts" | find "my_record" ||echo my_record>>"%SystemRoot%\system32\drivers\etc\hosts"
试试这个.您需要管理员权限才能在hosts文件中添加内容
我需要一个批处理文件来向 Windows中的hosts文件添加一条记录,但是我不需要一个文件追加写入,因为我想检查这条记录是否已经存在.有可能吗? type %SystemRoot%system32driversetchosts | find my_record ||echo my_record%SystemRoot%system32driversetchosts
我需要一个批处理文件来向
Windows中的hosts文件添加一条记录,但是我不需要一个文件追加写入,因为我想检查这条记录是否已经存在.有可能吗?
type "%SystemRoot%\system32\drivers\etc\hosts" | find "my_record" ||echo my_record>>"%SystemRoot%\system32\drivers\etc\hosts"
试试这个.您需要管理员权限才能在hosts文件中添加内容