Chinaunix首页 | 论坛 | 博客
  • 博客访问: 56796
  • 博文数量: 12
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 140
  • 用 户 组: 普通用户
  • 注册时间: 2013-03-03 21:11
个人简介

knowledge share

文章分类

全部博文(12)

文章存档

2015年(1)

2014年(8)

2013年(3)

我的朋友

分类: WINDOWS

2014-07-23 22:12:01

1)检测系统是否win7
function CheckWin7(): Boolean;
begin
  GetWindowsVersionEx(Version);
  if Version.Major = 6 then
  begin
    Result := True;   
  end else
  begin
      Result := False;
  end;
end;
2)检测是否是silent安装
function CheckSilentInstall():Boolean;
begin
  if Lowercase(ExpandConstant('{param:conf|n}')) = 'y' then 
  begin
    SilentInstall := 'y';
    Log('silent install');
    Result := True;
  end else
  begin
    SilentInstall := 'n';
    Result := False;
  end;
end;
3)检测端口是否被占用
function CheckPortOccupied(Port:String):Boolean;
var
  ResultCode: Integer;
begin
 Exec(ExpandConstant('{cmd}'),  '/C netstat -na | findstr'+' /C:":'+Port+' "', '', 0,ewWaitUntilTerminated, ResultCode);
  if ResultCode  <> 1 then 
  begin
    Log('this port('+Port+') is occupied');
    Result := True; 
  end else
  begin
    Result := False;
  end;
end;
4)检测无效端口
function CheckWrongPort(Port:String):Boolean;
var
  iPort,lMax,lMin:Longint;
begin
  lMax := 65535;
  lMin := 0;
  iPort := StrToIntDef(Port,-1); 
  if  iPort <> -1  then //有效字符
  begin
    if (iPort >= lMin) and (iPort <= lMax) then    
      Result := False    
    else
      Result := True;
  end else 
    Result := True;
end;
5)检测有效端口
function CheckValidPort(Port:String):Boolean;
var
  iPort,lMax,lMin:Longint;
begin
  lMax := 65535;
  lMin := 1024;
  iPort := StrToIntDef(Port,0);
  if (iPort <=lMax) and (iPort >= lMin) then
    Result := True
  else
    Result := False;
end;
6)检测用户是否域用户
function CheckDomainUser():Boolean;
var
DosCmd : String;
ResultCode: Integer;
begin
  UserName := ExpandConstant('{username}');
  DomainName := ExpandConstant('{%USERDOMAIN}');
  DosCmd := '/C net localgroup Administrators | findstr '+'"'+DomainName+'\'+UserName+'"';
  Exec(ExpandConstant('{cmd}'),DosCmd, '',  SW_HIDE,ewWaitUntilTerminated, ResultCode);
  if ResultCode = 0 then
  begin
    Result := True
    Log('this user('+UserName+') is a domain user');
  end else
    Result := False;
end;
7)修改环境变量
procedure SetEnv(aEnvName, aEnvValue: string; aIsInstall, aIsInsForAllUser: Boolean);
begin
  if aIsInstall then
  begin
    if not RegWriteStringValue(HKEY_LOCAL_MACHINE, 'SYSTEM\CurrentControlSet\Control\Session Manager\Environment', aEnvName, aEnvValue) then
      Log('set env:'+aEnvName+' fail');
  end;
  if not aIsInstall then
  begin
    RegDeleteValue(HKEY_LOCAL_MACHINE, 'SYSTEM\CurrentControlSet\Control\Session Manager\Environment', aEnvName);
  end; 
end;
8)检测中文安装路径
function CheckChinesePath(Ch: Char): Boolean;
var
  i:Integer;
begin
  i:=Ord(Ch);
  if (i>=127) then
    Result := False 
  else 
    Result := True;
end;
9)修改配置文件
procedure ModConf(FileName,OldString,NewString:string);
var
  FileLines: TArrayOfString;
  i: Integer;
begin
  LoadStringsFromFile(FileName, FileLines); 
  for i:=0 to GetArrayLength(FileLines)-1 do 
  if (Pos(OldString, FileLines[i]) > 0) then 
  StringChange(FileLines[i], OldString, NewString); 
  SaveStringsToFile(FileName, FileLines, False); 
end;




阅读(6813) | 评论(0) | 转发(0) |
0

上一篇:BRE与ERE的差异

下一篇:没有了

给主人留下些什么吧!~~