当前位置 博文首页 > 关闭默认共享的bat文件

    关闭默认共享的bat文件

    作者:admin 时间:2021-02-10 12:28

    复制代码 代码如下:

    @echo off
    title www.jb51.net
    color 2b
    cls
    net share
    net share ipc$ /del
    net share c$ /del
    net share d$ /del
    net share e$ /del
    net share f$ /del
    net share admin$ /del
    echo 默认共享已经关闭
    pause
    js