建議你使用注冊(cè)表的API進(jìn)行修改
我們提供的服務(wù)有:網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站建設(shè)、微信公眾號(hào)開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、武義ssl等。為成百上千企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的武義網(wǎng)站制作公司
封裝兩個(gè)NET函數(shù)給你
private?string?GetReg(string?RegPath)??取得注冊(cè)表項(xiàng)內(nèi)容
{
string?str="";
RegistryKey?hkml?=?Registry.LocalMachine;?
RegistryKey?software?=?hkml.OpenSubKey("SOFTWARE",true);?
RegistryKey?aimdir?=?software.OpenSubKey("krabs",true);
if?(aimdir?!=?null)
{
if?(aimdir.GetValue(RegPath)?!=?null)
str?=?aimdir.GetValue(RegPath).ToString();
if?(str?!=?null)
return?str;
return?null;
}
return?null;
}
private?bool?SetReg(string?RegPath,string?Data)??//設(shè)置注冊(cè)表內(nèi)容
{
RegistryKey?reg?=?Registry.LocalMachine;
RegistryKey?software?=?reg.OpenSubKey("SOFTWARE",?true);
RegistryKey?aimdir1?=?software.CreateSubKey("krabs");
if?(aimdir1?==?null)
return?false;
aimdir1.SetValue(RegPath,?Data);
return?true;
}
1、點(diǎn)擊右側(cè)的網(wǎng)絡(luò)連接,在彈出的對(duì)話框中點(diǎn)擊打開網(wǎng)絡(luò)和共享中心。
2、在網(wǎng)絡(luò)和共享中心界面中點(diǎn)擊更改適配器設(shè)置。
3、進(jìn)入網(wǎng)絡(luò)連接界面,右鍵本地連接。
4、在彈出的菜單中選擇屬性。
5、在本地連接屬性界面中點(diǎn)擊配置按鈕。
6、切換到高級(jí)選項(xiàng)卡,在屬性列表中找到并點(diǎn)擊網(wǎng)絡(luò)地址,在右側(cè)輸入修改后的網(wǎng)絡(luò)地址,點(diǎn)擊確定按鈕。
7、使用命令提示符,輸入Ipconfig-all,可以查看修改后的物理地址。
做exe程序獲取本機(jī)IP地址用
System.Net.Dns.GetHostByName(System.Net.Dns.GetHostName()).AddressList
做web程序獲取客戶端的IP地址用
HttpContext.Current.Request.ServerVariables("REMOTE_ADDR"])
1.獲取當(dāng)前電腦名:System.Net.Dns.GetHostName()
2.根據(jù)電腦名取出全部IP地址:System.Net.Dns.Resolve(電腦名).AddressList
或者 System.Net.Dns.GetHostByName(電腦名).AddressList
3.根據(jù)IP地址取出電腦名:System.Net.Dns.Resolve(IP地址).HostName