File size: 89,964 Bytes
8c763fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#if !UNIX
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Management.Automation;
using System.Management.Automation.Internal;
using System.Net;
using System.Runtime.Serialization;
using System.Security.Cryptography;
using System.Text;
using System.Threading;
using Microsoft.Management.Infrastructure;
using Microsoft.Management.Infrastructure.Options;
using Microsoft.Win32;
using Dbg = System.Management.Automation;
namespace Microsoft.PowerShell.Commands
{
#region Restart-Computer
/// <summary>
/// This exception is thrown when the timeout expires before a computer finishes restarting.
/// </summary>
public sealed class RestartComputerTimeoutException : RuntimeException
{
/// <summary>
/// Name of the computer that is restarting.
/// </summary>
public string ComputerName { get; }
/// <summary>
/// The timeout value specified by the user. It indicates the seconds to wait before timeout.
/// </summary>
public int Timeout { get; }
/// <summary>
/// Construct a RestartComputerTimeoutException.
/// </summary>
/// <param name="computerName"></param>
/// <param name="timeout"></param>
/// <param name="message"></param>
/// <param name="errorId"></param>
internal RestartComputerTimeoutException(string computerName, int timeout, string message, string errorId)
: base(message)
{
SetErrorId(errorId);
SetErrorCategory(ErrorCategory.OperationTimeout);
ComputerName = computerName;
Timeout = timeout;
}
/// <summary>
/// Construct a RestartComputerTimeoutException.
/// </summary>
public RestartComputerTimeoutException() : base() { }
/// <summary>
/// Constructs a RestartComputerTimeoutException.
/// </summary>
/// <param name="message">
/// The message used in the exception.
/// </param>
public RestartComputerTimeoutException(string message) : base(message) { }
/// <summary>
/// Constructs a RestartComputerTimeoutException.
/// </summary>
/// <param name="message">
/// The message used in the exception.
/// </param>
/// <param name="innerException">
/// An exception that led to this exception.
/// </param>
public RestartComputerTimeoutException(string message, Exception innerException) : base(message, innerException) { }
}
/// <summary>
/// Defines the services that Restart-Computer can wait on.
/// </summary>
[SuppressMessage("Microsoft.Design", "CA1027:MarkEnumsWithFlags")]
public enum WaitForServiceTypes
{
/// <summary>
/// Wait for the WMI service to be ready.
/// </summary>
Wmi = 0x0,
/// <summary>
/// Wait for the WinRM service to be ready.
/// </summary>
WinRM = 0x1,
/// <summary>
/// Wait for the PowerShell to be ready.
/// </summary>
PowerShell = 0x2,
}
/// <summary>
/// Restarts the computer.
/// </summary>
[Cmdlet(VerbsLifecycle.Restart, "Computer", SupportsShouldProcess = true, DefaultParameterSetName = DefaultParameterSet,
HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097060", RemotingCapability = RemotingCapability.OwnedByCommand)]
public class RestartComputerCommand : PSCmdlet, IDisposable
{
#region "Parameters and PrivateData"
private const string DefaultParameterSet = "DefaultSet";
private const int forcedReboot = 6; // see https://msdn.microsoft.com/library/aa394058(v=vs.85).aspx
/// <summary>
/// The authentication options for CIM_WSMan connection.
/// </summary>
[Parameter(ParameterSetName = DefaultParameterSet)]
[ValidateSet(
"Default",
"Basic",
"Negotiate", // can be used with and without credential (without -> PSRP mapped to NegotiateWithImplicitCredential)
"CredSSP",
"Digest",
"Kerberos")] // can be used with explicit or implicit credential
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly")]
public string WsmanAuthentication { get; set; }
/// <summary>
/// Specifies the computer (s)Name on which this command is executed.
/// When this parameter is omitted, this cmdlet restarts the local computer.
/// Type the NETBIOS name, IP address, or fully-qualified domain name of one
/// or more computers in a comma-separated list. To specify the local computer, type the computername or "localhost".
/// </summary>
[Parameter(Position = 0, ValueFromPipeline = true,
ValueFromPipelineByPropertyName = true)]
[ValidateNotNullOrEmpty]
[SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")]
[Alias("CN", "__SERVER", "Server", "IPAddress")]
public string[] ComputerName { get; set; } = new string[] { "." };
private List<string> _validatedComputerNames = new();
private readonly List<string> _waitOnComputers = new();
private readonly HashSet<string> _uniqueComputerNames = new(StringComparer.OrdinalIgnoreCase);
/// <summary>
/// The following is the definition of the input parameter "Credential".
/// Specifies a user account that has permission to perform this action. Type a
/// user-name, such as "User01" or "Domain01\User01", or enter a PSCredential
/// object, such as one from the Get-Credential cmdlet.
/// </summary>
[Parameter(Position = 1)]
[ValidateNotNullOrEmpty]
[Credential]
public PSCredential Credential { get; set; }
/// <summary>
/// Using Force in conjunction with Reboot on a
/// remote computer immediately reboots the remote computer.
/// </summary>
[Parameter]
[Alias("f")]
public SwitchParameter Force { get; set; }
/// <summary>
/// Specify the Wait parameter. Prompt will be blocked is the Timeout is not 0.
/// </summary>
[Parameter(ParameterSetName = DefaultParameterSet)]
public SwitchParameter Wait { get; set; }
/// <summary>
/// Specify the Timeout parameter.
/// Negative value indicates wait infinitely.
/// Positive value indicates the seconds to wait before timeout.
/// </summary>
[Parameter(ParameterSetName = DefaultParameterSet)]
[Alias("TimeoutSec")]
[ValidateRange(-1, int.MaxValue)]
public int Timeout
{
get
{
return _timeout;
}
set
{
_timeout = value;
_timeoutSpecified = true;
}
}
private int _timeout = -1;
private bool _timeoutSpecified = false;
/// <summary>
/// Specify the For parameter.
/// Wait for the specific service before unblocking the prompt.
/// </summary>
[Parameter(ParameterSetName = DefaultParameterSet)]
public WaitForServiceTypes For
{
get
{
return _waitFor;
}
set
{
_waitFor = value;
_waitForSpecified = true;
}
}
private WaitForServiceTypes _waitFor = WaitForServiceTypes.PowerShell;
private bool _waitForSpecified = false;
/// <summary>
/// Specify the Delay parameter.
/// The specific time interval (in second) to wait between network pings or service queries.
/// </summary>
[Parameter(ParameterSetName = DefaultParameterSet)]
[ValidateRange(1, short.MaxValue)]
public short Delay
{
get
{
return (short)_delay;
}
set
{
_delay = value;
_delaySpecified = true;
}
}
private int _delay = 5;
private bool _delaySpecified = false;
/// <summary>
/// Script to test if the PowerShell is ready.
/// </summary>
private const string TestPowershellScript = @"
$array = @($input)
$result = @{}
foreach ($computerName in $array[1])
{
$ret = $null
$arguments = @{
ComputerName = $computerName
ScriptBlock = { $true }
SessionOption = New-PSSessionOption -NoMachineProfile
ErrorAction = 'SilentlyContinue'
}
if ( $null -ne $array[0] )
{
$arguments['Credential'] = $array[0]
}
$result[$computerName] = (Invoke-Command @arguments) -as [bool]
}
$result
";
/// <summary>
/// The indicator to use when show progress.
/// </summary>
private readonly string[] _indicator = { "|", "/", "-", "\\" };
/// <summary>
/// The activity id.
/// </summary>
private int _activityId;
/// <summary>
/// After call 'Shutdown' on the target computer, wait a few
/// seconds for the restart to begin.
/// </summary>
private const int SecondsToWaitForRestartToBegin = 25;
/// <summary>
/// Actual time out in seconds.
/// </summary>
private int _timeoutInMilliseconds;
/// <summary>
/// Indicate to exit.
/// </summary>
private bool _exit, _timeUp;
private readonly CancellationTokenSource _cancel = new();
/// <summary>
/// A waithandler to wait on. Current thread will wait on it during the delay interval.
/// </summary>
private readonly ManualResetEventSlim _waitHandler = new(false);
private readonly Dictionary<string, ComputerInfo> _computerInfos = new(StringComparer.OrdinalIgnoreCase);
// CLR 4.0 Port note - use https://msdn.microsoft.com/library/system.net.networkinformation.ipglobalproperties.hostname(v=vs.110).aspx
private readonly string _shortLocalMachineName = Dns.GetHostName();
// And for this, use PsUtils.GetHostname()
private readonly string _fullLocalMachineName = Dns.GetHostEntryAsync(string.Empty).Result.HostName;
private int _percent;
private string _status;
private string _activity;
private Timer _timer;
private System.Management.Automation.PowerShell _powershell;
private const string StageVerification = "VerifyStage";
private const string WmiConnectionTest = "WMI";
private const string WinrmConnectionTest = "WinRM";
private const string PowerShellConnectionTest = "PowerShell";
#endregion "parameters and PrivateData"
#region "IDisposable Members"
/// <summary>
/// Dispose Method.
/// </summary>
public void Dispose()
{
this.Dispose(true);
// Use SuppressFinalize in case a subclass
// of this type implements a finalizer.
GC.SuppressFinalize(this);
}
/// <summary>
/// Dispose Method.
/// </summary>
/// <param name="disposing"></param>
public void Dispose(bool disposing)
{
if (disposing)
{
_timer?.Dispose();
_waitHandler.Dispose();
_cancel.Dispose();
_powershell?.Dispose();
}
}
#endregion "IDisposable Members"
#region "Private Methods"
/// <summary>
/// Validate parameters for 'DefaultSet'
/// 1. When the Wait is specified, the computername cannot contain the local machine
/// 2. If the local machine is present, make sure it is at the end of the list (so the remote ones get restarted before the local machine reboot).
/// </summary>
private void ValidateComputerNames()
{
bool containLocalhost = false;
_validatedComputerNames.Clear();
foreach (string name in ComputerName)
{
ErrorRecord error = null;
string targetComputerName = ComputerWMIHelper.ValidateComputerName(name, _shortLocalMachineName, _fullLocalMachineName, ref error);
if (targetComputerName == null)
{
if (error != null)
{
WriteError(error);
}
continue;
}
if (targetComputerName.Equals(ComputerWMIHelper.localhostStr, StringComparison.OrdinalIgnoreCase))
{
containLocalhost = true;
}
else if (!_uniqueComputerNames.Contains(targetComputerName))
{
_validatedComputerNames.Add(targetComputerName);
_uniqueComputerNames.Add(targetComputerName);
}
}
// Force wait with a test hook even if we're on the local computer
if (!InternalTestHooks.TestWaitStopComputer && Wait && containLocalhost)
{
// The local machine will be ignored, and an error will be emitted.
InvalidOperationException ex = new(ComputerResources.CannotWaitLocalComputer);
WriteError(new ErrorRecord(ex, "CannotWaitLocalComputer", ErrorCategory.InvalidOperation, null));
containLocalhost = false;
}
// Add the localhost to the end of the list, so we will restart remote machines
// before we restart the local one.
if (containLocalhost)
{
_validatedComputerNames.Add(ComputerWMIHelper.localhostStr);
}
}
/// <summary>
/// Write out progress.
/// </summary>
/// <param name="activity"></param>
/// <param name="status"></param>
/// <param name="percent"></param>
/// <param name="progressRecordType"></param>
private void WriteProgress(string activity, string status, int percent, ProgressRecordType progressRecordType)
{
ProgressRecord progress = new(_activityId, activity, status);
progress.PercentComplete = percent;
progress.RecordType = progressRecordType;
WriteProgress(progress);
}
/// <summary>
/// Calculate the progress percentage.
/// </summary>
/// <param name="currentStage"></param>
/// <returns></returns>
private int CalculateProgressPercentage(string currentStage)
{
switch (currentStage)
{
case StageVerification:
return _waitFor.Equals(WaitForServiceTypes.Wmi) || _waitFor.Equals(WaitForServiceTypes.WinRM)
? 33
: 20;
case WmiConnectionTest:
return _waitFor.Equals(WaitForServiceTypes.Wmi) ? 66 : 40;
case WinrmConnectionTest:
return _waitFor.Equals(WaitForServiceTypes.WinRM) ? 66 : 60;
case PowerShellConnectionTest:
return 80;
default:
break;
}
Dbg.Diagnostics.Assert(false, "CalculateProgressPercentage should never hit the default case");
return 0;
}
/// <summary>
/// Event handler for the timer.
/// </summary>
/// <param name="s"></param>
private void OnTimedEvent(object s)
{
_exit = _timeUp = true;
_cancel.Cancel();
_waitHandler.Set();
if (_powershell != null)
{
_powershell.Stop();
_powershell.Dispose();
}
}
private sealed class ComputerInfo
{
internal string LastBootUpTime;
internal bool RebootComplete;
}
private List<string> TestRestartStageUsingWsman(IEnumerable<string> computerNames, List<string> nextTestList, CancellationToken token)
{
var restartStageTestList = new List<string>();
var operationOptions = new CimOperationOptions
{
Timeout = TimeSpan.FromMilliseconds(2000),
CancellationToken = token
};
foreach (var computer in computerNames)
{
try
{
if (token.IsCancellationRequested)
{
break;
}
using (CimSession cimSession = RemoteDiscoveryHelper.CreateCimSession(computer, Credential, WsmanAuthentication, isLocalHost: false, this, token))
{
bool itemRetrieved = false;
IEnumerable<CimInstance> mCollection = cimSession.QueryInstances(
ComputerWMIHelper.CimOperatingSystemNamespace,
ComputerWMIHelper.CimQueryDialect,
"Select * from " + ComputerWMIHelper.WMI_Class_OperatingSystem,
operationOptions);
foreach (CimInstance os in mCollection)
{
itemRetrieved = true;
string newLastBootUpTime = os.CimInstanceProperties["LastBootUpTime"].Value.ToString();
string oldLastBootUpTime = _computerInfos[computer].LastBootUpTime;
if (!string.Equals(newLastBootUpTime, oldLastBootUpTime, StringComparison.OrdinalIgnoreCase))
{
_computerInfos[computer].RebootComplete = true;
nextTestList.Add(computer);
}
else
{
restartStageTestList.Add(computer);
}
}
if (!itemRetrieved)
{
restartStageTestList.Add(computer);
}
}
}
catch (CimException)
{
restartStageTestList.Add(computer);
}
catch (Exception)
{
restartStageTestList.Add(computer);
}
}
return restartStageTestList;
}
private List<string> SetUpComputerInfoUsingWsman(IEnumerable<string> computerNames, CancellationToken token)
{
var validComputerNameList = new List<string>();
var operationOptions = new CimOperationOptions
{
Timeout = TimeSpan.FromMilliseconds(2000),
CancellationToken = token
};
foreach (var computer in computerNames)
{
try
{
using (CimSession cimSession = RemoteDiscoveryHelper.CreateCimSession(computer, Credential, WsmanAuthentication, isLocalHost: false, this, token))
{
bool itemRetrieved = false;
IEnumerable<CimInstance> mCollection = cimSession.QueryInstances(
ComputerWMIHelper.CimOperatingSystemNamespace,
ComputerWMIHelper.CimQueryDialect,
"Select * from " + ComputerWMIHelper.WMI_Class_OperatingSystem,
operationOptions);
foreach (CimInstance os in mCollection)
{
itemRetrieved = true;
if (!_computerInfos.ContainsKey(computer))
{
var info = new ComputerInfo
{
LastBootUpTime = os.CimInstanceProperties["LastBootUpTime"].Value.ToString(),
RebootComplete = false
};
_computerInfos.Add(computer, info);
validComputerNameList.Add(computer);
}
}
if (!itemRetrieved)
{
string errMsg = StringUtil.Format(ComputerResources.RestartComputerSkipped, computer, ComputerResources.CannotGetOperatingSystemObject);
var error = new ErrorRecord(new InvalidOperationException(errMsg), "RestartComputerSkipped",
ErrorCategory.OperationStopped, computer);
this.WriteError(error);
}
}
}
catch (CimException ex)
{
string errMsg = StringUtil.Format(ComputerResources.RestartComputerSkipped, computer, ex.Message);
var error = new ErrorRecord(new InvalidOperationException(errMsg), "RestartComputerSkipped",
ErrorCategory.OperationStopped, computer);
this.WriteError(error);
}
catch (Exception ex)
{
string errMsg = StringUtil.Format(ComputerResources.RestartComputerSkipped, computer, ex.Message);
var error = new ErrorRecord(new InvalidOperationException(errMsg), "RestartComputerSkipped",
ErrorCategory.OperationStopped, computer);
this.WriteError(error);
}
}
return validComputerNameList;
}
private void WriteOutTimeoutError(IEnumerable<string> computerNames)
{
const string errorId = "RestartComputerTimeout";
foreach (string computer in computerNames)
{
string errorMsg = StringUtil.Format(ComputerResources.RestartcomputerFailed, computer, ComputerResources.TimeoutError);
var exception = new RestartComputerTimeoutException(computer, Timeout, errorMsg, errorId);
var error = new ErrorRecord(exception, errorId, ErrorCategory.OperationTimeout, computer);
if (!InternalTestHooks.TestWaitStopComputer)
{
WriteError(error);
}
}
}
#endregion "Private Methods"
#region "Internal Methods"
internal static List<string> TestWmiConnectionUsingWsman(List<string> computerNames, List<string> nextTestList, PSCredential credential, string wsmanAuthentication, PSCmdlet cmdlet, CancellationToken token)
{
// Check if the WMI service "Winmgmt" is started
const string wmiServiceQuery = "Select * from " + ComputerWMIHelper.WMI_Class_Service + " Where name = 'Winmgmt'";
var wmiTestList = new List<string>();
var operationOptions = new CimOperationOptions
{
Timeout = TimeSpan.FromMilliseconds(2000),
CancellationToken = token
};
foreach (var computer in computerNames)
{
try
{
if (token.IsCancellationRequested)
{
break;
}
using (CimSession cimSession = RemoteDiscoveryHelper.CreateCimSession(computer, credential, wsmanAuthentication, isLocalHost: false, cmdlet, token))
{
bool itemRetrieved = false;
IEnumerable<CimInstance> mCollection = cimSession.QueryInstances(
ComputerWMIHelper.CimOperatingSystemNamespace,
ComputerWMIHelper.CimQueryDialect,
wmiServiceQuery,
operationOptions);
foreach (CimInstance service in mCollection)
{
itemRetrieved = true;
if (LanguagePrimitives.IsTrue(service.CimInstanceProperties["Started"].Value))
{
nextTestList.Add(computer);
}
else
{
wmiTestList.Add(computer);
}
}
if (!itemRetrieved)
{
wmiTestList.Add(computer);
}
}
}
catch (CimException)
{
wmiTestList.Add(computer);
}
catch (Exception)
{
wmiTestList.Add(computer);
}
}
return wmiTestList;
}
/// <summary>
/// Test the PowerShell state for the restarting computer.
/// </summary>
/// <param name="computerNames"></param>
/// <param name="nextTestList"></param>
/// <param name="powershell"></param>
/// <param name="credential"></param>
/// <returns></returns>
internal static List<string> TestPowerShell(List<string> computerNames, List<string> nextTestList, System.Management.Automation.PowerShell powershell, PSCredential credential)
{
List<string> psList = new();
try
{
Collection<PSObject> psObjectCollection = powershell.Invoke(new object[] { credential, computerNames.ToArray() });
if (psObjectCollection == null)
{
Dbg.Diagnostics.Assert(false, "This should never happen. Invoke should never return null.");
}
// If ^C or timeout happens when we are in powershell.Invoke(), the psObjectCollection might be empty
if (psObjectCollection.Count == 0)
{
return computerNames;
}
object result = PSObject.Base(psObjectCollection[0]);
Hashtable data = result as Hashtable;
Dbg.Diagnostics.Assert(data != null, "data should never be null");
Dbg.Diagnostics.Assert(data.Count == computerNames.Count, "data should contain results for all computers in computerNames");
foreach (string computer in computerNames)
{
if (LanguagePrimitives.IsTrue(data[computer]))
{
nextTestList.Add(computer);
}
else
{
psList.Add(computer);
}
}
}
catch (PipelineStoppedException)
{
// powershell.Stop() is invoked because timeout expires, or Ctrl+C is pressed
}
catch (ObjectDisposedException)
{
// powershell.dispose() is invoked because timeout expires, or Ctrl+C is pressed
}
return psList;
}
#endregion "Internal Methods"
#region "Overrides"
/// <summary>
/// BeginProcessing method.
/// </summary>
protected override void BeginProcessing()
{
// Timeout, For, Delay, Progress cannot be present if Wait is not present
if ((_timeoutSpecified || _waitForSpecified || _delaySpecified) && !Wait)
{
InvalidOperationException ex = new(ComputerResources.RestartComputerInvalidParameter);
ThrowTerminatingError(new ErrorRecord(ex, "RestartComputerInvalidParameter", ErrorCategory.InvalidOperation, null));
}
if (Wait)
{
_activityId = Random.Shared.Next();
if (_timeout == -1 || _timeout >= int.MaxValue / 1000)
{
_timeoutInMilliseconds = int.MaxValue;
}
else
{
_timeoutInMilliseconds = _timeout * 1000;
}
// We don't support combined service types for now
switch (_waitFor)
{
case WaitForServiceTypes.Wmi:
case WaitForServiceTypes.WinRM:
break;
case WaitForServiceTypes.PowerShell:
_powershell = System.Management.Automation.PowerShell.Create();
_powershell.AddScript(TestPowershellScript);
break;
default:
InvalidOperationException ex = new(ComputerResources.NoSupportForCombinedServiceType);
ErrorRecord error = new(ex, "NoSupportForCombinedServiceType", ErrorCategory.InvalidOperation, (int)_waitFor);
ThrowTerminatingError(error);
break;
}
}
}
/// <summary>
/// ProcessRecord method.
/// </summary>
[SuppressMessage("Microsoft.Maintainability", "CA1506:AvoidExcessiveClassCoupling")]
protected override void ProcessRecord()
{
// Validate parameters
ValidateComputerNames();
object[] flags = new object[] { 2, 0 };
if (Force)
{
flags[0] = forcedReboot;
}
if (ParameterSetName.Equals(DefaultParameterSet, StringComparison.OrdinalIgnoreCase))
{
if (Wait && _timeout != 0)
{
_validatedComputerNames =
SetUpComputerInfoUsingWsman(_validatedComputerNames, _cancel.Token);
}
foreach (string computer in _validatedComputerNames)
{
bool isLocal = false;
string compname;
if (computer.Equals("localhost", StringComparison.OrdinalIgnoreCase))
{
compname = _shortLocalMachineName;
isLocal = true;
}
else
{
compname = computer;
}
// Generate target and action strings
string action =
StringUtil.Format(
ComputerResources.RestartComputerAction,
isLocal ? ComputerResources.LocalShutdownPrivilege : ComputerResources.RemoteShutdownPrivilege);
string target =
isLocal ? StringUtil.Format(ComputerResources.DoubleComputerName, "localhost", compname) : compname;
if (!ShouldProcess(target, action))
{
continue;
}
bool isSuccess =
ComputerWMIHelper.InvokeWin32ShutdownUsingWsman(this, isLocal, compname, flags, Credential, WsmanAuthentication, ComputerResources.RestartcomputerFailed, "RestartcomputerFailed", _cancel.Token);
if (isSuccess && Wait && _timeout != 0)
{
_waitOnComputers.Add(computer);
}
}
if (_waitOnComputers.Count > 0)
{
var restartStageTestList = new List<string>(_waitOnComputers);
var wmiTestList = new List<string>();
var winrmTestList = new List<string>();
var psTestList = new List<string>();
var allDoneList = new List<string>();
bool isForWmi = _waitFor.Equals(WaitForServiceTypes.Wmi);
bool isForWinRm = _waitFor.Equals(WaitForServiceTypes.WinRM);
bool isForPowershell = _waitFor.Equals(WaitForServiceTypes.PowerShell);
int indicatorIndex = 0;
int machineCompleteRestart = 0;
int actualDelay = SecondsToWaitForRestartToBegin;
bool first = true;
bool waitComplete = false;
_percent = 0;
_status = ComputerResources.WaitForRestartToBegin;
_activity = _waitOnComputers.Count == 1 ?
StringUtil.Format(ComputerResources.RestartSingleComputerActivity, _waitOnComputers[0]) :
ComputerResources.RestartMultipleComputersActivity;
_timer = new Timer(OnTimedEvent, null, _timeoutInMilliseconds, System.Threading.Timeout.Infinite);
while (true)
{
// (delay * 1000)/250ms
int loopCount = actualDelay * 4;
while (loopCount > 0)
{
WriteProgress(_indicator[(indicatorIndex++) % 4] + _activity, _status, _percent, ProgressRecordType.Processing);
loopCount--;
_waitHandler.Wait(250);
if (_exit)
{
break;
}
}
if (first)
{
actualDelay = _delay;
first = false;
if (_waitOnComputers.Count > 1)
{
_status = StringUtil.Format(ComputerResources.WaitForMultipleComputers, machineCompleteRestart, _waitOnComputers.Count);
WriteProgress(_indicator[(indicatorIndex++) % 4] + _activity, _status, _percent, ProgressRecordType.Processing);
}
}
do
{
// Test restart stage.
// We check if the target machine has already rebooted by querying the LastBootUpTime from the Win32_OperatingSystem object.
// So after this step, we are sure that both the Network and the WMI or WinRM service have already come up.
if (_exit)
{
break;
}
if (restartStageTestList.Count > 0)
{
if (_waitOnComputers.Count == 1)
{
_status = ComputerResources.VerifyRebootStage;
_percent = CalculateProgressPercentage(StageVerification);
WriteProgress(_indicator[(indicatorIndex++) % 4] + _activity, _status, _percent, ProgressRecordType.Processing);
}
List<string> nextTestList = (isForWmi || isForPowershell) ? wmiTestList : winrmTestList;
restartStageTestList = TestRestartStageUsingWsman(restartStageTestList, nextTestList, _cancel.Token);
}
// Test WMI service
if (_exit)
{
break;
}
if (wmiTestList.Count > 0)
{
// This statement block executes for both CLRs.
// In the "full" CLR, it serves as the else case.
{
if (_waitOnComputers.Count == 1)
{
_status = ComputerResources.WaitForWMI;
_percent = CalculateProgressPercentage(WmiConnectionTest);
WriteProgress(_indicator[(indicatorIndex++) % 4] + _activity, _status, _percent, ProgressRecordType.Processing);
}
wmiTestList = TestWmiConnectionUsingWsman(wmiTestList, winrmTestList, Credential, WsmanAuthentication, this, _cancel.Token);
}
}
if (isForWmi)
{
break;
}
// Test WinRM service
if (_exit)
{
break;
}
if (winrmTestList.Count > 0)
{
// This statement block executes for both CLRs.
// In the "full" CLR, it serves as the else case.
{
// CIM-WSMan in use. In this case, restart stage checking is done by using WMIv2,
// so the WinRM service on the target machine is already up at this point.
psTestList.AddRange(winrmTestList);
winrmTestList.Clear();
if (_waitOnComputers.Count == 1)
{
// This is to simulate the test for WinRM service
_status = ComputerResources.WaitForWinRM;
_percent = CalculateProgressPercentage(WinrmConnectionTest);
loopCount = actualDelay * 4; // (delay * 1000)/250ms
while (loopCount > 0)
{
WriteProgress(_indicator[(indicatorIndex++) % 4] + _activity, _status, _percent, ProgressRecordType.Processing);
loopCount--;
_waitHandler.Wait(250);
if (_exit)
{
break;
}
}
}
}
}
if (isForWinRm)
{
break;
}
// Test PowerShell
if (_exit)
{
break;
}
if (psTestList.Count > 0)
{
if (_waitOnComputers.Count == 1)
{
_status = ComputerResources.WaitForPowerShell;
_percent = CalculateProgressPercentage(PowerShellConnectionTest);
WriteProgress(_indicator[(indicatorIndex++) % 4] + _activity, _status, _percent, ProgressRecordType.Processing);
}
psTestList = TestPowerShell(psTestList, allDoneList, _powershell, this.Credential);
}
} while (false);
// if time is up or Ctrl+c is typed, break out
if (_exit)
{
break;
}
// Check if the restart completes
switch (_waitFor)
{
case WaitForServiceTypes.Wmi:
waitComplete = (winrmTestList.Count == _waitOnComputers.Count);
machineCompleteRestart = winrmTestList.Count;
break;
case WaitForServiceTypes.WinRM:
waitComplete = (psTestList.Count == _waitOnComputers.Count);
machineCompleteRestart = psTestList.Count;
break;
case WaitForServiceTypes.PowerShell:
waitComplete = (allDoneList.Count == _waitOnComputers.Count);
machineCompleteRestart = allDoneList.Count;
break;
}
// Wait is done or time is up
if (waitComplete || _exit)
{
if (waitComplete)
{
_status = ComputerResources.RestartComplete;
WriteProgress(_indicator[indicatorIndex % 4] + _activity, _status, 100, ProgressRecordType.Completed);
_timer.Change(System.Threading.Timeout.Infinite, System.Threading.Timeout.Infinite);
}
break;
}
if (_waitOnComputers.Count > 1)
{
_status = StringUtil.Format(ComputerResources.WaitForMultipleComputers, machineCompleteRestart, _waitOnComputers.Count);
_percent = machineCompleteRestart * 100 / _waitOnComputers.Count;
}
}
if (_timeUp)
{
// The timeout expires. Write out timeout error messages for the computers that haven't finished restarting
do
{
if (restartStageTestList.Count > 0)
{
WriteOutTimeoutError(restartStageTestList);
}
if (wmiTestList.Count > 0)
{
WriteOutTimeoutError(wmiTestList);
}
// Wait for WMI. All computers that finished restarting are put in "winrmTestList"
if (isForWmi)
{
break;
}
// Wait for WinRM. All computers that finished restarting are put in "psTestList"
if (winrmTestList.Count > 0)
{
WriteOutTimeoutError(winrmTestList);
}
if (isForWinRm)
{
break;
}
if (psTestList.Count > 0)
{
WriteOutTimeoutError(psTestList);
}
// Wait for PowerShell. All computers that finished restarting are put in "allDoneList"
} while (false);
}
}
}
}
/// <summary>
/// To implement ^C.
/// </summary>
protected override void StopProcessing()
{
_exit = true;
_cancel.Cancel();
_waitHandler.Set();
_timer?.Change(System.Threading.Timeout.Infinite, System.Threading.Timeout.Infinite);
if (_powershell != null)
{
_powershell.Stop();
_powershell.Dispose();
}
}
#endregion "Overrides"
}
#endregion Restart-Computer
#region Stop-Computer
/// <summary>
/// Cmdlet to stop computer.
/// </summary>
[Cmdlet(VerbsLifecycle.Stop, "Computer", SupportsShouldProcess = true,
HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097151", RemotingCapability = RemotingCapability.SupportedByCommand)]
public sealed class StopComputerCommand : PSCmdlet, IDisposable
{
#region Private Members
private readonly CancellationTokenSource _cancel = new();
private const int forcedShutdown = 5; // See https://msdn.microsoft.com/library/aa394058(v=vs.85).aspx
#endregion
#region "Parameters"
/// <summary>
/// The authentication options for CIM_WSMan connection.
/// </summary>
[Parameter]
[ValidateSet(
"Default",
"Basic",
"Negotiate", // can be used with and without credential (without -> PSRP mapped to NegotiateWithImplicitCredential)
"CredSSP",
"Digest",
"Kerberos")] // can be used with explicit or implicit credential
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly")]
public string WsmanAuthentication { get; set; } = "Default";
/// <summary>
/// The following is the definition of the input parameter "ComputerName".
/// Value of the address requested. The form of the value can be either the
/// computer name ("wxyz1234"), IPv4 address ("192.168.177.124"), or IPv6
/// address ("2010:836B:4179::836B:4179").
/// </summary>
[Parameter(Position = 0, ValueFromPipelineByPropertyName = true)]
[ValidateNotNullOrEmpty]
[SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")]
[Alias("CN", "__SERVER", "Server", "IPAddress")]
public string[] ComputerName { get; set; } = new string[] { "." };
/// <summary>
/// The following is the definition of the input parameter "Credential".
/// Specifies a user account that has permission to perform this action. Type a
/// user-name, such as "User01" or "Domain01\User01", or enter a PSCredential
/// object, such as one from the Get-Credential cmdlet.
/// </summary>
[Parameter(Position = 1)]
[ValidateNotNullOrEmpty]
[Credential]
public PSCredential Credential { get; set; }
/// <summary>
/// Force the operation to take place if possible.
/// </summary>
[Parameter]
public SwitchParameter Force { get; set; } = false;
#endregion "parameters"
#region "IDisposable Members"
/// <summary>
/// Dispose Method.
/// </summary>
public void Dispose()
{
_cancel.Dispose();
}
#endregion "IDisposable Members"
#region "Overrides"
/// <summary>
/// ProcessRecord.
/// </summary>
[SuppressMessage("Microsoft.Maintainability", "CA1506:AvoidExcessiveClassCoupling")]
protected override void ProcessRecord()
{
object[] flags = new object[] { 1, 0 };
if (Force.IsPresent)
flags[0] = forcedShutdown;
ProcessWSManProtocol(flags);
}
/// <summary>
/// To implement ^C.
/// </summary>
protected override void StopProcessing()
{
try
{
_cancel.Cancel();
}
catch (ObjectDisposedException) { }
catch (AggregateException) { }
}
#endregion "Overrides"
#region Private Methods
private void ProcessWSManProtocol(object[] flags)
{
foreach (string computer in ComputerName)
{
string compname = string.Empty;
string strLocal = string.Empty;
bool isLocalHost = false;
if (_cancel.Token.IsCancellationRequested)
{
break;
}
if ((computer.Equals("localhost", StringComparison.OrdinalIgnoreCase)) || (computer.Equals(".", StringComparison.OrdinalIgnoreCase)))
{
compname = Dns.GetHostName();
strLocal = "localhost";
isLocalHost = true;
}
else
{
compname = computer;
}
if (!ShouldProcess(StringUtil.Format(ComputerResources.DoubleComputerName, strLocal, compname)))
{
continue;
}
else
{
ComputerWMIHelper.InvokeWin32ShutdownUsingWsman(
this,
isLocalHost,
compname,
flags,
Credential,
WsmanAuthentication,
ComputerResources.StopcomputerFailed,
"StopComputerException",
_cancel.Token);
}
}
}
#endregion
}
#endregion
#region Rename-Computer
/// <summary>
/// Renames a domain computer and its corresponding domain account or a
/// workgroup computer. Use this command to rename domain workstations and local
/// machines only. It cannot be used to rename Domain Controllers.
/// </summary>
[Cmdlet(VerbsCommon.Rename, "Computer", SupportsShouldProcess = true,
HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097054", RemotingCapability = RemotingCapability.SupportedByCommand)]
[OutputType(typeof(RenameComputerChangeInfo))]
public class RenameComputerCommand : PSCmdlet
{
#region Private Members
private bool _containsLocalHost = false;
private string _newNameForLocalHost = null;
private readonly string _shortLocalMachineName = Dns.GetHostName();
private readonly string _fullLocalMachineName = Dns.GetHostEntryAsync(string.Empty).Result.HostName;
#endregion
#region Parameters
/// <summary>
/// Target computers to rename.
/// </summary>
[Parameter(ValueFromPipelineByPropertyName = true)]
[ValidateNotNullOrEmpty]
public string ComputerName { get; set; } = "localhost";
/// <summary>
/// Emit the output.
/// </summary>
// [Alias("Restart")]
[Parameter]
public SwitchParameter PassThru { get; set; }
/// <summary>
/// The domain credential of the domain the target computer joined.
/// </summary>
[Parameter]
[ValidateNotNullOrEmpty]
[Credential]
public PSCredential DomainCredential { get; set; }
/// <summary>
/// The administrator credential of the target computer.
/// </summary>
[Parameter]
[ValidateNotNullOrEmpty]
[Credential]
public PSCredential LocalCredential { get; set; }
/// <summary>
/// New names for the target computers.
/// </summary>
[Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true)]
[ValidateNotNullOrEmpty]
public string NewName { get; set; }
/// <summary>
/// Suppress the ShouldContinue.
/// </summary>
[Parameter]
public SwitchParameter Force
{
get { return _force; }
set { _force = value; }
}
private bool _force;
/// <summary>
/// To restart the target computer after rename it.
/// </summary>
[Parameter]
public SwitchParameter Restart
{
get { return _restart; }
set { _restart = value; }
}
private bool _restart;
/// <summary>
/// The authentication options for CIM_WSMan connection.
/// </summary>
[Parameter]
[ValidateSet(
"Default",
"Basic",
"Negotiate", // can be used with and without credential (without -> PSRP mapped to NegotiateWithImplicitCredential)
"CredSSP",
"Digest",
"Kerberos")] // can be used with implicit or explicit credential
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly")]
public string WsmanAuthentication { get; set; } = "Default";
#endregion
#region "Private Methods"
/// <summary>
/// Check to see if the target computer is the local machine.
/// </summary>
private string ValidateComputerName()
{
// Validate target name.
ErrorRecord targetError = null;
string targetComputer = ComputerWMIHelper.ValidateComputerName(ComputerName, _shortLocalMachineName, _fullLocalMachineName, ref targetError);
if (targetComputer == null)
{
if (targetError != null)
{
WriteError(targetError);
}
return null;
}
// Validate *new* name. Validate the format of the new name. Check if the old name is the same as the
// new name later.
if (!ComputerWMIHelper.IsComputerNameValid(NewName))
{
bool isLocalhost = targetComputer.Equals(ComputerWMIHelper.localhostStr, StringComparison.OrdinalIgnoreCase);
string errMsg = StringUtil.Format(ComputerResources.InvalidNewName, isLocalhost ? _shortLocalMachineName : targetComputer, NewName);
ErrorRecord error = new(
new InvalidOperationException(errMsg), "InvalidNewName",
ErrorCategory.InvalidArgument, NewName);
WriteError(error);
return null;
}
return targetComputer;
}
private void DoRenameComputerAction(string computer, string newName, bool isLocalhost)
{
string computerName = isLocalhost ? _shortLocalMachineName : computer;
if (!ShouldProcess(computerName))
{
return;
}
// Check the length of the new name
if (newName != null && newName.Length > ComputerWMIHelper.NetBIOSNameMaxLength)
{
string truncatedName = newName.Substring(0, ComputerWMIHelper.NetBIOSNameMaxLength);
string query = StringUtil.Format(ComputerResources.TruncateNetBIOSName, truncatedName);
string caption = ComputerResources.TruncateNetBIOSNameCaption;
if (!Force && !ShouldContinue(query, caption))
{
return;
}
}
DoRenameComputerWsman(computer, computerName, newName, isLocalhost);
}
private void DoRenameComputerWsman(string computer, string computerName, string newName, bool isLocalhost)
{
bool successful = false;
int retVal;
PSCredential credToUse = isLocalhost ? null : (LocalCredential ?? DomainCredential);
try
{
using (CancellationTokenSource cancelTokenSource = new())
using (CimSession cimSession = RemoteDiscoveryHelper.CreateCimSession(computer, credToUse, WsmanAuthentication, isLocalhost, this, cancelTokenSource.Token))
{
var operationOptions = new CimOperationOptions
{
Timeout = TimeSpan.FromMilliseconds(10000),
CancellationToken = cancelTokenSource.Token,
// This prefix works against all versions of the WinRM server stack, both win8 and win7
ResourceUriPrefix = new Uri(ComputerWMIHelper.CimUriPrefix)
};
IEnumerable<CimInstance> mCollection = cimSession.QueryInstances(
ComputerWMIHelper.CimOperatingSystemNamespace,
ComputerWMIHelper.CimQueryDialect,
"Select * from " + ComputerWMIHelper.WMI_Class_ComputerSystem,
operationOptions);
foreach (CimInstance cimInstance in mCollection)
{
var oldName = cimInstance.CimInstanceProperties["DNSHostName"].Value.ToString();
if (oldName.Equals(newName, StringComparison.OrdinalIgnoreCase))
{
string errMsg = StringUtil.Format(ComputerResources.NewNameIsOldName, computerName, newName);
ErrorRecord error = new(
new InvalidOperationException(errMsg), "NewNameIsOldName",
ErrorCategory.InvalidArgument, newName);
WriteError(error);
continue;
}
// If the target computer is in a domain, always use the DomainCred. If the DomainCred is not given,
// use null for UserName and Password, so the context of the caller will be used.
// If the target computer is not in a domain, just use null for the UserName and Password
string dUserName = null;
string dPassword = null;
if (((bool)cimInstance.CimInstanceProperties["PartOfDomain"].Value) && (DomainCredential != null))
{
dUserName = DomainCredential.UserName;
dPassword = Utils.GetStringFromSecureString(DomainCredential.Password);
}
var methodParameters = new CimMethodParametersCollection();
methodParameters.Add(CimMethodParameter.Create(
"Name",
newName,
Microsoft.Management.Infrastructure.CimType.String,
CimFlags.None));
methodParameters.Add(CimMethodParameter.Create(
"UserName",
dUserName,
Microsoft.Management.Infrastructure.CimType.String,
(dUserName == null) ? CimFlags.NullValue : CimFlags.None));
methodParameters.Add(
CimMethodParameter.Create(
"Password",
dPassword,
Microsoft.Management.Infrastructure.CimType.String,
(dPassword == null) ? CimFlags.NullValue : CimFlags.None));
if (!InternalTestHooks.TestRenameComputer)
{
CimMethodResult result = cimSession.InvokeMethod(
ComputerWMIHelper.CimOperatingSystemNamespace,
cimInstance,
"Rename",
methodParameters,
operationOptions);
retVal = Convert.ToInt32(result.ReturnValue.Value, CultureInfo.CurrentCulture);
}
else
{
retVal = InternalTestHooks.TestRenameComputerResults;
}
if (retVal != 0)
{
var ex = new Win32Exception(retVal);
string errMsg = StringUtil.Format(ComputerResources.FailToRename, computerName, newName, ex.Message);
ErrorRecord error = new(new InvalidOperationException(errMsg), "FailToRenameComputer", ErrorCategory.OperationStopped, computerName);
WriteError(error);
}
else
{
successful = true;
}
if (PassThru)
{
WriteObject(ComputerWMIHelper.GetRenameComputerStatusObject(retVal, newName, computerName));
}
if (successful)
{
if (_restart)
{
// If successful and the Restart parameter is specified, restart the computer
object[] flags = new object[] { 6, 0 };
ComputerWMIHelper.InvokeWin32ShutdownUsingWsman(
this,
isLocalhost,
computerName,
flags,
credToUse,
WsmanAuthentication,
ComputerResources.RestartcomputerFailed,
"RestartcomputerFailed",
cancelTokenSource.Token);
}
else
{
WriteWarning(StringUtil.Format(ComputerResources.RestartNeeded, null, computerName));
}
}
}
}
}
catch (CimException ex)
{
string errMsg = StringUtil.Format(ComputerResources.FailToConnectToComputer, computerName, ex.Message);
ErrorRecord error = new(new InvalidOperationException(errMsg), "RenameComputerException",
ErrorCategory.OperationStopped, computerName);
WriteError(error);
}
catch (Exception ex)
{
string errMsg = StringUtil.Format(ComputerResources.FailToConnectToComputer, computerName, ex.Message);
ErrorRecord error = new(new InvalidOperationException(errMsg), "RenameComputerException",
ErrorCategory.OperationStopped, computerName);
WriteError(error);
}
}
#endregion "Private Methods"
#region "Override Methods"
/// <summary>
/// ProcessRecord method.
/// </summary>
protected override void ProcessRecord()
{
string targetComputer = ValidateComputerName();
if (targetComputer == null)
{
return;
}
bool isLocalhost = targetComputer.Equals("localhost", StringComparison.OrdinalIgnoreCase);
if (isLocalhost)
{
if (!_containsLocalHost)
_containsLocalHost = true;
_newNameForLocalHost = NewName;
return;
}
DoRenameComputerAction(targetComputer, NewName, false);
}
/// <summary>
/// EndProcessing method.
/// </summary>
protected override void EndProcessing()
{
if (!_containsLocalHost)
{
return;
}
DoRenameComputerAction("localhost", _newNameForLocalHost, true);
}
#endregion "Override Methods"
}
#endregion Rename-Computer
#region "Public API"
/// <summary>
/// The object returned by SAM Computer cmdlets representing the status of the target machine.
/// </summary>
public sealed class ComputerChangeInfo
{
private const string MatchFormat = "{0}:{1}";
/// <summary>
/// The HasSucceeded which shows the operation was success or not.
/// </summary>
public bool HasSucceeded { get; set; }
/// <summary>
/// The ComputerName on which the operation is done.
/// </summary>
public string ComputerName { get; set; }
/// <summary>
/// Returns the string representation of this object.
/// </summary>
/// <returns></returns>
public override string ToString()
{
return FormatLine(this.HasSucceeded.ToString(), this.ComputerName);
}
/// <summary>
/// Formats a line for use in ToString.
/// </summary>
/// <param name="HasSucceeded"></param>
/// <param name="computername"></param>
/// <returns></returns>
private static string FormatLine(string HasSucceeded, string computername)
{
return StringUtil.Format(MatchFormat, HasSucceeded, computername);
}
}
/// <summary>
/// The object returned by Rename-Computer cmdlet representing the status of the target machine.
/// </summary>
public sealed class RenameComputerChangeInfo
{
private const string MatchFormat = "{0}:{1}:{2}";
/// <summary>
/// The status which shows the operation was success or failure.
/// </summary>
public bool HasSucceeded { get; set; }
/// <summary>
/// The NewComputerName which represents the target machine.
/// </summary>
public string NewComputerName { get; set; }
/// <summary>
/// The OldComputerName which represented the target machine.
/// </summary>
public string OldComputerName { get; set; }
/// <summary>
/// Returns the string representation of this object.
/// </summary>
/// <returns></returns>
public override string ToString()
{
return FormatLine(this.HasSucceeded.ToString(), this.NewComputerName, this.OldComputerName);
}
/// <summary>
/// Formats a line for use in ToString.
/// </summary>
/// <param name="HasSucceeded"></param>
/// <param name="newcomputername"></param>
/// <param name="oldcomputername"></param>
/// <returns></returns>
private static string FormatLine(string HasSucceeded, string newcomputername, string oldcomputername)
{
return StringUtil.Format(MatchFormat, HasSucceeded, newcomputername, oldcomputername);
}
}
#endregion "Public API"
#region Helper
/// <summary>
/// Helper Class used by Stop-Computer,Restart-Computer and Test-Connection
/// Also Contain constants used by System Restore related Cmdlets.
/// </summary>
internal static class ComputerWMIHelper
{
/// <summary>
/// The maximum length of a valid NetBIOS name.
/// </summary>
internal const int NetBIOSNameMaxLength = 15;
/// <summary>
/// System Restore Class used by Cmdlets.
/// </summary>
internal const string WMI_Class_SystemRestore = "SystemRestore";
/// <summary>
/// OperatingSystem WMI class used by Cmdlets.
/// </summary>
internal const string WMI_Class_OperatingSystem = "Win32_OperatingSystem";
/// <summary>
/// Service WMI class used by Cmdlets.
/// </summary>
internal const string WMI_Class_Service = "Win32_Service";
/// <summary>
/// Win32_ComputerSystem WMI class used by Cmdlets.
/// </summary>
internal const string WMI_Class_ComputerSystem = "Win32_ComputerSystem";
/// <summary>
/// Ping Class used by Cmdlet.
/// </summary>
internal const string WMI_Class_PingStatus = "Win32_PingStatus";
/// <summary>
/// CIMV2 path.
/// </summary>
internal const string WMI_Path_CIM = "\\root\\cimv2";
/// <summary>
/// Default path.
/// </summary>
internal const string WMI_Path_Default = "\\root\\default";
/// <summary>
/// The error says The interface is unknown.
/// </summary>
internal const int ErrorCode_Interface = 1717;
/// <summary>
/// This error says An instance of the service is already running.
/// </summary>
internal const int ErrorCode_Service = 1056;
/// <summary>
/// The name of the privilege to shutdown a local system.
/// </summary>
internal const string SE_SHUTDOWN_NAME = "SeShutdownPrivilege";
/// <summary>
/// The name of the privilege to shutdown a remote system.
/// </summary>
internal const string SE_REMOTE_SHUTDOWN_NAME = "SeRemoteShutdownPrivilege";
/// <summary>
/// CimUriPrefix.
/// </summary>
internal const string CimUriPrefix = "http://schemas.microsoft.com/wbem/wsman/1/wmi/root/cimv2";
/// <summary>
/// CimOperatingSystemNamespace.
/// </summary>
internal const string CimOperatingSystemNamespace = "root/cimv2";
/// <summary>
/// CimOperatingSystemShutdownMethod.
/// </summary>
internal const string CimOperatingSystemShutdownMethod = "Win32shutdown";
/// <summary>
/// CimQueryDialect.
/// </summary>
internal const string CimQueryDialect = "WQL";
/// <summary>
/// Local host name.
/// </summary>
internal const string localhostStr = "localhost";
/// <summary>
/// Get the local admin user name from a local NetworkCredential.
/// </summary>
/// <param name="computerName"></param>
/// <param name="psLocalCredential"></param>
/// <returns></returns>
internal static string GetLocalAdminUserName(string computerName, PSCredential psLocalCredential)
{
string localUserName = null;
// The format of local admin username should be "ComputerName\AdminName"
if (psLocalCredential.UserName.Contains('\\'))
{
localUserName = psLocalCredential.UserName;
}
else
{
int dotIndex = computerName.IndexOf('.');
if (dotIndex == -1)
{
localUserName = computerName + "\\" + psLocalCredential.UserName;
}
else
{
localUserName = string.Concat(computerName.AsSpan(0, dotIndex), "\\", psLocalCredential.UserName);
}
}
return localUserName;
}
/// <summary>
/// Generate a random password.
/// </summary>
/// <param name="passwordLength"></param>
/// <returns></returns>
internal static string GetRandomPassword(int passwordLength)
{
const int charMin = 32, charMax = 122;
const int allowedCharsCount = charMax - charMin + 1;
byte[] randomBytes = new byte[passwordLength];
char[] chars = new char[passwordLength];
RandomNumberGenerator rng = RandomNumberGenerator.Create();
rng.GetBytes(randomBytes);
for (int i = 0; i < passwordLength; i++)
{
chars[i] = (char)(randomBytes[i] % allowedCharsCount + charMin);
}
return new string(chars);
}
/// <summary>
/// Gets the Scope.
/// </summary>
/// <param name="computer"></param>
/// <param name="namespaceParameter"></param>
/// <returns></returns>
internal static string GetScopeString(string computer, string namespaceParameter)
{
StringBuilder returnValue = new("\\\\");
if (computer.Equals("::1", StringComparison.OrdinalIgnoreCase) || computer.Equals("[::1]", StringComparison.OrdinalIgnoreCase))
{
returnValue.Append("localhost");
}
else
{
returnValue.Append(computer);
}
returnValue.Append(namespaceParameter);
return returnValue.ToString();
}
/// <summary>
/// Returns true if it is a valid drive on the system.
/// </summary>
/// <param name="drive"></param>
/// <returns></returns>
internal static bool IsValidDrive(string drive)
{
DriveInfo[] drives = DriveInfo.GetDrives();
foreach (DriveInfo logicalDrive in drives)
{
if (logicalDrive.DriveType.Equals(DriveType.Fixed))
{
if (drive.Equals(logicalDrive.Name, System.StringComparison.OrdinalIgnoreCase))
return true;
}
}
return false;
}
/// <summary>
/// Checks whether string[] contains System Drive.
/// </summary>
/// <param name="drives"></param>
/// <param name="sysdrive"></param>
/// <returns></returns>
internal static bool ContainsSystemDrive(string[] drives, string sysdrive)
{
string driveApp;
foreach (string drive in drives)
{
if (!drive.EndsWith('\\'))
{
driveApp = string.Concat(drive, "\\");
}
else
driveApp = drive;
if (driveApp.Equals(sysdrive, StringComparison.OrdinalIgnoreCase))
return true;
}
return false;
}
/// <summary>
/// Returns the given computernames in a string.
/// </summary>
/// <param name="computerNames"></param>
internal static string GetMachineNames(string[] computerNames)
{
string separator = ",";
RegistryKey regKey = Registry.CurrentUser.OpenSubKey(@"Control Panel\International");
if (regKey != null)
{
object sListValue = regKey.GetValue("sList");
if (sListValue != null)
{
separator = sListValue.ToString();
}
}
string compname = string.Empty;
StringBuilder strComputers = new();
int i = 0;
foreach (string computer in computerNames)
{
if (i > 0)
{
strComputers.Append(separator);
}
else
{
i++;
}
if ((computer.Equals("localhost", StringComparison.OrdinalIgnoreCase)) || (computer.Equals(".", StringComparison.OrdinalIgnoreCase)))
{
compname = Dns.GetHostName();
}
else
{
compname = computer;
}
strComputers.Append(compname);
}
return strComputers.ToString();
}
internal static ComputerChangeInfo GetComputerStatusObject(int errorcode, string computername)
{
ComputerChangeInfo computerchangeinfo = new();
computerchangeinfo.ComputerName = computername;
if (errorcode != 0)
{
computerchangeinfo.HasSucceeded = false;
}
else
{
computerchangeinfo.HasSucceeded = true;
}
return computerchangeinfo;
}
internal static RenameComputerChangeInfo GetRenameComputerStatusObject(int errorcode, string newcomputername, string oldcomputername)
{
RenameComputerChangeInfo renamecomputerchangeinfo = new();
renamecomputerchangeinfo.OldComputerName = oldcomputername;
renamecomputerchangeinfo.NewComputerName = newcomputername;
if (errorcode != 0)
{
renamecomputerchangeinfo.HasSucceeded = false;
}
else
{
renamecomputerchangeinfo.HasSucceeded = true;
}
return renamecomputerchangeinfo;
}
internal static void WriteNonTerminatingError(int errorcode, PSCmdlet cmdlet, string computername)
{
Win32Exception ex = new(errorcode);
string additionalmessage = string.Empty;
if (ex.NativeErrorCode.Equals(0x00000035))
{
additionalmessage = StringUtil.Format(ComputerResources.NetworkPathNotFound, computername);
}
string message = StringUtil.Format(ComputerResources.OperationFailed, ex.Message, computername, additionalmessage);
ErrorRecord er = new(new InvalidOperationException(message), "InvalidOperationException", ErrorCategory.InvalidOperation, computername);
cmdlet.WriteError(er);
}
/// <summary>
/// Check whether the new computer name is valid.
/// </summary>
/// <param name="computerName"></param>
/// <returns></returns>
internal static bool IsComputerNameValid(string computerName)
{
bool hasAsciiLetterOrHyphen = false;
if (computerName.Length >= 64)
return false;
foreach (char t in computerName)
{
if (char.IsAsciiLetter(t) || t is '-')
{
hasAsciiLetterOrHyphen = true;
}
else if (!char.IsAsciiDigit(t))
{
return false;
}
}
return hasAsciiLetterOrHyphen;
}
/// <summary>
/// Invokes the Win32Shutdown command on provided target computer using WSMan
/// over a CIMSession. The flags parameter determines the type of shutdown operation
/// such as shutdown, reboot, force etc.
/// </summary>
/// <param name="cmdlet">Cmdlet host for reporting errors.</param>
/// <param name="isLocalhost">True if local host computer.</param>
/// <param name="computerName">Target computer.</param>
/// <param name="flags">Win32Shutdown flags.</param>
/// <param name="credential">Optional credential.</param>
/// <param name="authentication">Optional authentication.</param>
/// <param name="formatErrorMessage">Error message format string that takes two parameters.</param>
/// <param name="ErrorFQEID">Fully qualified error Id.</param>
/// <param name="cancelToken">Cancel token.</param>
/// <returns>True on success.</returns>
internal static bool InvokeWin32ShutdownUsingWsman(
PSCmdlet cmdlet,
bool isLocalhost,
string computerName,
object[] flags,
PSCredential credential,
string authentication,
string formatErrorMessage,
string ErrorFQEID,
CancellationToken cancelToken)
{
Dbg.Diagnostics.Assert(flags.Length == 2, "Caller need to verify the flags passed in");
bool isSuccess = false;
string targetMachine = isLocalhost ? "localhost" : computerName;
string authInUse = isLocalhost ? null : authentication;
PSCredential credInUse = isLocalhost ? null : credential;
var currentPrivilegeState = new PlatformInvokes.TOKEN_PRIVILEGE();
var operationOptions = new CimOperationOptions
{
Timeout = TimeSpan.FromMilliseconds(10000),
CancellationToken = cancelToken,
// This prefix works against all versions of the WinRM server stack, both win8 and win7
ResourceUriPrefix = new Uri(ComputerWMIHelper.CimUriPrefix)
};
try
{
if (!(isLocalhost && PlatformInvokes.EnableTokenPrivilege(ComputerWMIHelper.SE_SHUTDOWN_NAME, ref currentPrivilegeState)) &&
!(!isLocalhost && PlatformInvokes.EnableTokenPrivilege(ComputerWMIHelper.SE_REMOTE_SHUTDOWN_NAME, ref currentPrivilegeState)))
{
string message =
StringUtil.Format(ComputerResources.PrivilegeNotEnabled, computerName,
isLocalhost ? ComputerWMIHelper.SE_SHUTDOWN_NAME : ComputerWMIHelper.SE_REMOTE_SHUTDOWN_NAME);
ErrorRecord errorRecord = new(new InvalidOperationException(message), "PrivilegeNotEnabled", ErrorCategory.InvalidOperation, null);
cmdlet.WriteError(errorRecord);
return false;
}
using (CimSession cimSession = RemoteDiscoveryHelper.CreateCimSession(targetMachine, credInUse, authInUse, isLocalhost, cmdlet, cancelToken))
{
var methodParameters = new CimMethodParametersCollection();
int retVal;
methodParameters.Add(CimMethodParameter.Create(
"Flags",
flags[0],
Microsoft.Management.Infrastructure.CimType.SInt32,
CimFlags.None));
methodParameters.Add(CimMethodParameter.Create(
"Reserved",
flags[1],
Microsoft.Management.Infrastructure.CimType.SInt32,
CimFlags.None));
if (!InternalTestHooks.TestStopComputer)
{
CimMethodResult result = null;
if (isLocalhost)
{
// Win32_ComputerSystem is a singleton hence FirstOrDefault() return the only instance returned by EnumerateInstances.
var computerSystem = cimSession.EnumerateInstances(ComputerWMIHelper.CimOperatingSystemNamespace, ComputerWMIHelper.WMI_Class_OperatingSystem).FirstOrDefault();
result = cimSession.InvokeMethod(
ComputerWMIHelper.CimOperatingSystemNamespace,
computerSystem,
ComputerWMIHelper.CimOperatingSystemShutdownMethod,
methodParameters,
operationOptions);
}
else
{
result = cimSession.InvokeMethod(
ComputerWMIHelper.CimOperatingSystemNamespace,
ComputerWMIHelper.WMI_Class_OperatingSystem,
ComputerWMIHelper.CimOperatingSystemShutdownMethod,
methodParameters,
operationOptions);
}
retVal = Convert.ToInt32(result.ReturnValue.Value, CultureInfo.CurrentCulture);
}
else
{
retVal = InternalTestHooks.TestStopComputerResults;
}
if (retVal != 0)
{
var ex = new Win32Exception(retVal);
string errMsg = StringUtil.Format(formatErrorMessage, computerName, ex.Message);
ErrorRecord error = new(
new InvalidOperationException(errMsg), ErrorFQEID, ErrorCategory.OperationStopped, computerName);
cmdlet.WriteError(error);
}
else
{
isSuccess = true;
}
}
}
catch (CimException ex)
{
string errMsg = StringUtil.Format(formatErrorMessage, computerName, ex.Message);
ErrorRecord error = new(new InvalidOperationException(errMsg), ErrorFQEID,
ErrorCategory.OperationStopped, computerName);
cmdlet.WriteError(error);
}
catch (Exception ex)
{
string errMsg = StringUtil.Format(formatErrorMessage, computerName, ex.Message);
ErrorRecord error = new(new InvalidOperationException(errMsg), ErrorFQEID,
ErrorCategory.OperationStopped, computerName);
cmdlet.WriteError(error);
}
finally
{
// Restore the previous privilege state if something unexpected happened
PlatformInvokes.RestoreTokenPrivilege(
isLocalhost ? ComputerWMIHelper.SE_SHUTDOWN_NAME : ComputerWMIHelper.SE_REMOTE_SHUTDOWN_NAME, ref currentPrivilegeState);
}
return isSuccess;
}
/// <summary>
/// Returns valid computer name or null on failure.
/// </summary>
/// <param name="nameToCheck">Computer name to validate.</param>
/// <param name="shortLocalMachineName"></param>
/// <param name="fullLocalMachineName"></param>
/// <param name="error"></param>
/// <returns>Valid computer name.</returns>
internal static string ValidateComputerName(
string nameToCheck,
string shortLocalMachineName,
string fullLocalMachineName,
ref ErrorRecord error)
{
string validatedComputerName = null;
if (nameToCheck.Equals(".", StringComparison.OrdinalIgnoreCase) ||
nameToCheck.Equals(localhostStr, StringComparison.OrdinalIgnoreCase) ||
nameToCheck.Equals(shortLocalMachineName, StringComparison.OrdinalIgnoreCase) ||
nameToCheck.Equals(fullLocalMachineName, StringComparison.OrdinalIgnoreCase))
{
validatedComputerName = localhostStr;
}
else
{
bool isIPAddress = false;
try
{
isIPAddress = IPAddress.TryParse(nameToCheck, out _);
}
catch (Exception)
{
}
try
{
string fqcn = Dns.GetHostEntryAsync(nameToCheck).Result.HostName;
if (fqcn.Equals(shortLocalMachineName, StringComparison.OrdinalIgnoreCase) ||
fqcn.Equals(fullLocalMachineName, StringComparison.OrdinalIgnoreCase))
{
// The IPv4 or IPv6 of the local machine is specified
validatedComputerName = localhostStr;
}
else
{
validatedComputerName = nameToCheck;
}
}
catch (Exception e)
{
// If GetHostEntry() throw exception, then the target should not be the local machine
if (!isIPAddress)
{
// Return error if the computer name is not an IP address. Dns.GetHostEntry() may not work on IP addresses.
string errMsg = StringUtil.Format(ComputerResources.CannotResolveComputerName, nameToCheck, e.Message);
error = new ErrorRecord(
new InvalidOperationException(errMsg), "AddressResolutionException",
ErrorCategory.InvalidArgument, nameToCheck);
return null;
}
validatedComputerName = nameToCheck;
}
}
return validatedComputerName;
}
}
#endregion Helper
}
#endif
|