登录
首页 » VBScript » adduser

adduser

于 2015-09-26 发布 文件大小:1KB
0 189
下载积分: 1 下载次数: 1

代码说明:

  Add Windows new user with VBS

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • iec103
    iec60870-5-103协议实现,采用c++语言(iec60870-5-103 Protocol implementation, using c++ language)
    2017-11-10 14:07:17下载
    积分:1
  • iconpick1
    基于Visual C++6。0开发的图标拾取小程序。可以取可执行文件中的图标并保存。很不错。(based on Visual C 6. 0 pick up the development of the small icon procedures. May take the executable file icon and preserve. Is pretty good.)
    2006-10-21 20:41:13下载
    积分:1
  • 5-VBA-code
    VB是设计用于创建标准的应用程序,而VBA是使已有的应用程序(EXCEL等)自动化 VBA应用技巧代码 第5章(VB is designed to create a standard application, and VBA is to make existing applications (EXCEL, etc.) automation application skills VBA Code Chapter 5)
    2011-08-20 09:11:40下载
    积分:1
  • WindPMSG_985w_45A_70V_crowbar1
    说明:  1kw左右永磁直驱风机并网模型;带有低电压穿越;穿越方式是电阻耗能型,控制直流母线电压下降。(The grid-connected model of permanent magnet direct drive fan around 1kw; with low voltage crossing; the crossing mode is resistance energy dissipation type, which controls the DC bus voltage drop.)
    2019-12-19 11:05:54下载
    积分:1
  • volumebar_demo
    Volume Bar Demo Control
    2009-10-18 09:40:17下载
    积分:1
  • netnew, web time settings, dynamic Kazakhstan, can make your website more attrac...
    网页特效,网页时间的设置,动态的哈,可以让你的网页更精美-netnew, web time settings, dynamic Kazakhstan, can make your website more attractive
    2022-01-26 05:53:39下载
    积分:1
  • 657940
    登录163邮箱源码,程序使用易语言超级链接框组件的跳转功能,直接登录网易163邮箱。(Login 163 E-mail source , the program uses easy language hyperlinks frame assembly jump function , directly log 163 mailboxes.)
    2015-11-11 09:42:45下载
    积分:1
  • 1、xpGrid数据控件:根据数据库数据字典定义自动生成DataGrid,可不用写代码即可实现数据的增删改 2、集成的权限控制功能,权限按字段分配,可精确控制字...
    1、xpGrid数据控件:根据数据库数据字典定义自动生成DataGrid,可不用写代码即可实现数据的增删改 2、集成的权限控制功能,权限按字段分配,可精确控制字段的读写属性 3、丰富的数据编辑方式:提供按Form方式编辑和按Grid方式编辑两种方式数据编辑界面,对字段的输入方式提供:普通文本框、复选框、密码框、多行文本、下拉列表、引用其它表、图片等多种输入方式 4、数据重构:动态的修改数据字典,通过对数据字典的修改可动态的控制前台界面的显示及输入 5、代码维护:维护下拉列表编辑模式对应的下拉列表内容 6、权限控制:控制用户及角色的功能权限及字段权限 7、简单的应用系统框架-xpGrid Data Control: According to data dictionary definition of the database automatically generated DataGrid, there is no need to write code additions and deletions to the realization of data
    2023-04-19 19:30:03下载
    积分:1
  • 使用JAVA I/O和 NI/O写的两种网络ECHO服务器,用以学习两种IO的不同方法,体验基于阻塞与非阻塞IO开发高性能网络应用序的具体实例.Java...
    使用JAVA I/O和 NI/O编写的两种网络ECHO服务器,用以学习两种IO的不同编程方法,体验基于阻塞与非阻塞IO开发高性能网络应用程序的具体实例.Java平台传统的I/0系统基于byte(字节)和Stream(数据流)。这种模式下的I/O 操作以字节为单位,以流的方式处理数据。而NIO( New I/O )以块的方式处理数据,它的系统操作面向Buffer(缓冲),Channel(通道)和Selector(选择器),不再是字节,这种模式利用了操作系统管理内存和文件的方式,并将一些耗时操作直接转移给操作系统,使JavaI/O的速度得以提高、性能得到了明显的改善 -The use of JAVA I/O and NI/O, prepared by two types of network servers ECHO to learn two different programming methods IO experience obstructive and non-blocking IO based on the development of high-performance network applications specific examples. Java platform for the traditional I/0 system is based on the byte (byte) and Stream (data streams). This mode of I/O operation in bytes in order to deal with data flow way. The NIO (New I/O) blocks the way to deal with data, its system for Buffer (buffer), Channel (channel) and the Selector (selector), is no longer a byte, this mode of use of operating system management of memory and the manner in which documents, and some time-consuming operation of a direc
    2022-02-09 15:18:54下载
    积分:1
  • P2P c++ sdk
    P2P dll c++ ,  static emReturnType SetAppType(emAppType AppType);//设置程序类型,服务器emAppType_Server或者客户端emAppType_Client  static emReturnType SetClientCallback(IMsgCallback *pMsgCallback);//设置回调类,回调类继承IMsgCallback接口  static emReturnType Startup();//开启网络  static emReturnType Cleanup();//关闭网络  //Server  以下函数是服务器调用  static emReturnType BeginService(unsigned short nPort);//如果是服务器,调用该函数开启服务,nPort:端口号  static emReturnType EndService();//服务器退出的时候,调用该函数关闭服务  //Client  以下函数是客户端调用  static emReturnType Logon(LOGONINFO* pLogonInfo);//函数登录服务器。pLogonInfo:登录信息,详细见P2PHeaderDef.h->LOGONINFO  static emReturnType Logout();//登出服务器  static emReturnType ConnectAnchor(CLIENTINFO* pClientInfo);//连接主播,该函数是用户调用  static emReturnType SendP2PMSG(CLIENTINFO* pClientInfo, char* pszMsg, int nMsgLen);//发送P2P消息,pClientInfo,要发送的客户信息,如果是用户,则pClientI
    2022-02-03 19:54:38下载
    积分:1
  • 696518资源总数
  • 106174会员总数
  • 31今日下载