diff --git a/xCAT-server/lib/xcat/plugins/windows.pm b/xCAT-server/lib/xcat/plugins/windows.pm index 28c0fa63e..2c7590095 100644 --- a/xCAT-server/lib/xcat/plugins/windows.pm +++ b/xCAT-server/lib/xcat/plugins/windows.pm @@ -123,9 +123,9 @@ sub mkwinlinks { link "$installroot/autoinst/$node.cmd","$installroot/autoinst/$_.cmd"; unlink "/tftpboot/Boot/BCD.$_"; if ($ent->{arch} =~ /64/) { - link "/tftpboot/Boot/BCD.64","/tftpboot/Boot/BCD.$_"; + symlink "/tftpboot/Boot/BCD.64","/tftpboot/Boot/BCD.$_"; } else { - link "/tftpboot/Boot/BCD.32","/tftpboot/Boot/BCD.$_"; + symlink "/tftpboot/Boot/BCD.32","/tftpboot/Boot/BCD.$_"; } } }