一.建立用户的命令行语法: 建立用户:net user 用户名 密码 /add (如:net user test 123 /add) 提升权限:net localgroup 用户权限组 用户名 /add (如:net localgroup administrator test /add) 删除用户:net user 用户名 /del (如:net user test /del) 二.批量创建的方法: 利用EXCEL软件,创建…
整体思路:通过使用外部表将用户名导入Oracle的表中,然后通过PL/SQL遍历数据表,批量创建用户. 具体步骤如下: 1.在安装数据库的服务器的C盘根目录创建一个User List.txt文件,内容如下: 2.以sys用户登录数据库,创建directory对象. create directory test_d as 'c:\'; 3.给scott用户赋予读写directory对象的权限: grant read, write on directory test_d to scott; 4.切换到…
Array实现TCP的链接状态 #!/usr/bin/bash declare -A status type=`ss -an | grep :80|awk '{print $2}'` for i in $type do echo let status[$type]++ done for j in ${!status[@]} do echo "$j: ${status[$j]}" done while实现批量创建用户 #!/usr/bin/bash while read line do…