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