Example #1
0
 public boolean isWinHost() {
   return BootHost.isWinHost(dst_agent_ostype);
 }
Example #2
0
 public boolean isLargerThanVista() {
   String type = getWinPlatForm();
   return BootHost.isWinVista(type.toUpperCase()) || BootHost.isWin2008(type);
 }
Example #3
0
 public boolean isWin2000() {
   String type = getWinPlatForm();
   return BootHost.isWin2000(type);
 }
Example #4
0
 public boolean supportSysCopy() {
   String type = getWinPlatForm();
   return BootHost.supportSysCopy(type);
 }