请问windows 2000 server 系统的开机密码如何更改?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请问windows 2000 server 系统的开机密码如何更改?相关的知识,希望对你有一定的参考价值。

电脑装的是 windows 2000 server 系统,开机密码知道的人太多了,想修改一下,请问应如何更改?请各位大师尽量说的简单明了一些,本人对这个系统不是很熟悉.

参考技术A Windows
2000所在的Winnt\System32\Config
目录
下有个SAM文件(即账号密码数据库文件),它保存了Windows
2000中所有的
用户名
和密码。当你登录的时候,系统就会把你键入的用户名和密码,与SAM文件中的加密数据进行校对,如果两者完全符合,则会顺利进入系统,否则将无法登录,因此我们可以使用删除SAM文件的方法来恢复
管理员密码

删除SAM文件后重新启动,此时
管理员
Administrator账号已经没有密码了,这时你可以用Administrator
账户
登录系统,不用输入任何密码,进入系统后再重新设置你的管理员账户密码即可。

请问window.location.href以post方式传递参数的方法

目前用window.location.href实现传递参数的跳转,我看到普遍的格式是用url来传递参数,如下面:
<script language=javascript>
window.location.href="a.asp?name="+username"
</script>
如果想隐藏传递的参数,应该用什么样的格式?谢谢!

1、首先输入下方的命令代码:

<script language=javascript>   

2、然后输入下方的命令代码:

document.write("

<form action=abc.action method=post name=form1 style='display:none'>");  

document.write("<input type=hidden name=name value='"+username+"'/>");  

3、然后输入下方的命令代码:

document.write("</form>");  

document.form1.submit();  

</script>  ,就完成了。

参考技术A 可以这样:
<script language=javascript>
document.write("<form action=a.asp method=post name=formx1 style='display:none'>");
document.write("<input type=hidden name=name value='"+username+"'");
document.write("</form>");
document.formx1.submit();
</script>本回答被提问者采纳
参考技术B window.location.href="a.asp?name=<%server.URLEncode("+username+")%>"
改为这样试试~这样会对你的参数进行编码,显示的样式如:a.asp?name=%C9%CC%B3%AC%D5%FB%CC%E5%B2%DF%BB%AE
参考技术C function winPostHref(url,params)
var temp=document.createElement("form");
temp.action=URL;
temp.method="POST";
temp.style.display="none";
if(params != null)
for(var x in params)
var opt=document.createElement("input");
opt.name=x;
opt.type='hidden';
opt.value=params[x];
temp.appendChild(opt);


temp.submit();
return temp;
参考技术D 用post方式提交

以上是关于请问windows 2000 server 系统的开机密码如何更改?的主要内容,如果未能解决你的问题,请参考以下文章

windows2000到底是啥操作系统

请问WINDOWS系统Hosts文件是干啥用的

让VS2010支持Windows2000

SQL server2000 windows身份验证失败怎么办

SQL server2000 windows身份验证失败怎么办

windows 2000/xp WDM设备驱动程序开发