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
|
package Win32;
# BEGIN {
use strict;
use vars qw|$VERSION $XS_VERSION @ISA @EXPORT @EXPORT_OK|;
require Exporter;
require DynaLoader;
@ISA = qw|Exporter DynaLoader|;
$VERSION = '0.49';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
@EXPORT = qw(
NULL
WIN31_CLASS
OWNER_SECURITY_INFORMATION
GROUP_SECURITY_INFORMATION
DACL_SECURITY_INFORMATION
SACL_SECURITY_INFORMATION
MB_ICONHAND
MB_ICONQUESTION
MB_ICONEXCLAMATION
MB_ICONASTERISK
MB_ICONWARNING
MB_ICONERROR
MB_ICONINFORMATION
MB_ICONSTOP
);
@EXPORT_OK = qw(
GetOSName
SW_HIDE
SW_SHOWNORMAL
SW_SHOWMINIMIZED
SW_SHOWMAXIMIZED
SW_SHOWNOACTIVATE
CSIDL_DESKTOP
CSIDL_PROGRAMS
CSIDL_PERSONAL
CSIDL_FAVORITES
CSIDL_STARTUP
CSIDL_RECENT
CSIDL_SENDTO
CSIDL_STARTMENU
CSIDL_MYMUSIC
CSIDL_MYVIDEO
CSIDL_DESKTOPDIRECTORY
CSIDL_NETHOOD
CSIDL_FONTS
CSIDL_TEMPLATES
CSIDL_COMMON_STARTMENU
CSIDL_COMMON_PROGRAMS
CSIDL_COMMON_STARTUP
CSIDL_COMMON_DESKTOPDIRECTORY
CSIDL_APPDATA
CSIDL_PRINTHOOD
CSIDL_LOCAL_APPDATA
CSIDL_COMMON_FAVORITES
CSIDL_INTERNET_CACHE
CSIDL_COOKIES
CSIDL_HISTORY
CSIDL_COMMON_APPDATA
CSIDL_WINDOWS
CSIDL_SYSTEM
CSIDL_PROGRAM_FILES
CSIDL_MYPICTURES
CSIDL_PROFILE
CSIDL_PROGRAM_FILES_COMMON
CSIDL_COMMON_TEMPLATES
CSIDL_COMMON_DOCUMENTS
CSIDL_COMMON_ADMINTOOLS
CSIDL_ADMINTOOLS
CSIDL_COMMON_MUSIC
CSIDL_COMMON_PICTURES
CSIDL_COMMON_VIDEO
CSIDL_RESOURCES
CSIDL_RESOURCES_LOCALIZED
CSIDL_CDBURN_AREA
);
# }
# We won't bother with the constant stuff, too much of a hassle. Just hard
# code it here.
sub NULL { 0 }
sub WIN31_CLASS { &NULL }
sub OWNER_SECURITY_INFORMATION { 0x00000001 }
sub GROUP_SECURITY_INFORMATION { 0x00000002 }
sub DACL_SECURITY_INFORMATION { 0x00000004 }
sub SACL_SECURITY_INFORMATION { 0x00000008 }
sub MB_ICONHAND { 0x00000010 }
sub MB_ICONQUESTION { 0x00000020 }
sub MB_ICONEXCLAMATION { 0x00000030 }
sub MB_ICONASTERISK { 0x00000040 }
sub MB_ICONWARNING { 0x00000030 }
sub MB_ICONERROR { 0x00000010 }
sub MB_ICONINFORMATION { 0x00000040 }
sub MB_ICONSTOP { 0x00000010 }
#
# Newly added constants. These have an empty prototype, unlike the
# the ones above, which aren't prototyped for compatibility reasons.
#
sub SW_HIDE () { 0 }
sub SW_SHOWNORMAL () { 1 }
sub SW_SHOWMINIMIZED () { 2 }
sub SW_SHOWMAXIMIZED () { 3 }
sub SW_SHOWNOACTIVATE () { 4 }
sub CSIDL_DESKTOP () { 0x0000 } # <desktop>
sub CSIDL_PROGRAMS () { 0x0002 } # Start Menu\Programs
sub CSIDL_PERSONAL () { 0x0005 } # "My Documents" folder
sub CSIDL_FAVORITES () { 0x0006 } # <user name>\Favorites
sub CSIDL_STARTUP () { 0x0007 } # Start Menu\Programs\Startup
sub CSIDL_RECENT () { 0x0008 } # <user name>\Recent
sub CSIDL_SENDTO () { 0x0009 } # <user name>\SendTo
sub CSIDL_STARTMENU () { 0x000B } # <user name>\Start Menu
sub CSIDL_MYMUSIC () { 0x000D } # "My Music" folder
sub CSIDL_MYVIDEO () { 0x000E } # "My Videos" folder
sub CSIDL_DESKTOPDIRECTORY () { 0x0010 } # <user name>\Desktop
sub CSIDL_NETHOOD () { 0x0013 } # <user name>\nethood
sub CSIDL_FONTS () { 0x0014 } # windows\fonts
sub CSIDL_TEMPLATES () { 0x0015 }
sub CSIDL_COMMON_STARTMENU () { 0x0016 } # All Users\Start Menu
sub CSIDL_COMMON_PROGRAMS () { 0x0017 } # All Users\Start Menu\Programs
sub CSIDL_COMMON_STARTUP () { 0x0018 } # All Users\Startup
sub CSIDL_COMMON_DESKTOPDIRECTORY () { 0x0019 } # All Users\Desktop
sub CSIDL_APPDATA () { 0x001A } # Application Data, new for NT4
sub CSIDL_PRINTHOOD () { 0x001B } # <user name>\PrintHood
sub CSIDL_LOCAL_APPDATA () { 0x001C } # non roaming, user\Local Settings\Application Data
sub CSIDL_COMMON_FAVORITES () { 0x001F }
sub CSIDL_INTERNET_CACHE () { 0x0020 }
sub CSIDL_COOKIES () { 0x0021 }
sub CSIDL_HISTORY () { 0x0022 }
sub CSIDL_COMMON_APPDATA () { 0x0023 } # All Users\Application Data
sub CSIDL_WINDOWS () { 0x0024 } # GetWindowsDirectory()
sub CSIDL_SYSTEM () { 0x0025 } # GetSystemDirectory()
sub CSIDL_PROGRAM_FILES () { 0x0026 } # C:\Program Files
sub CSIDL_MYPICTURES () { 0x0027 } # "My Pictures", new for Win2K
sub CSIDL_PROFILE () { 0x0028 } # USERPROFILE
sub CSIDL_PROGRAM_FILES_COMMON () { 0x002B } # C:\Program Files\Common
sub CSIDL_COMMON_TEMPLATES () { 0x002D } # All Users\Templates
sub CSIDL_COMMON_DOCUMENTS () { 0x002E } # All Users\Documents
sub CSIDL_COMMON_ADMINTOOLS () { 0x002F } # All Users\Start Menu\Programs\Administrative Tools
sub CSIDL_ADMINTOOLS () { 0x0030 } # <user name>\Start Menu\Programs\Administrative Tools
sub CSIDL_COMMON_MUSIC () { 0x0035 } # All Users\My Music
sub CSIDL_COMMON_PICTURES () { 0x0036 } # All Users\My Pictures
sub CSIDL_COMMON_VIDEO () { 0x0037 } # All Users\My Video
sub CSIDL_RESOURCES () { 0x0038 } # %windir%\Resources\, For theme and other windows resources.
sub CSIDL_RESOURCES_LOCALIZED () { 0x0039 } # %windir%\Resources\<LangID>, for theme and other windows specific resources.
sub CSIDL_CDBURN_AREA () { 0x003B } # <user name>\Local Settings\Application Data\Microsoft\CD Burning
sub VER_NT_DOMAIN_CONTROLLER () { 0x0000002 } # The system is a domain controller and the operating system is Windows Server 2008, Windows Server 2003, or Windows 2000 Server.
sub VER_NT_SERVER () { 0x0000003 } # The operating system is Windows Server 2008, Windows Server 2003, or Windows 2000 Server.
# Note that a server that is also a domain controller is reported as VER_NT_DOMAIN_CONTROLLER, not VER_NT_SERVER.
sub VER_NT_WORKSTATION () { 0x0000001 } # The operating system is Windows Vista, Windows XP Professional, Windows XP Home Edition, or Windows 2000 Professional.
sub VER_SUITE_BACKOFFICE () { 0x00000004 } # Microsoft BackOffice components are installed.
sub VER_SUITE_BLADE () { 0x00000400 } # Windows Server 2003, Web Edition is installed.
sub VER_SUITE_COMPUTE_SERVER () { 0x00004000 } # Windows Server 2003, Compute Cluster Edition is installed.
sub VER_SUITE_DATACENTER () { 0x00000080 } # Windows Server 2008 Datacenter, Windows Server 2003, Datacenter Edition, or Windows 2000 Datacenter Server is installed.
sub VER_SUITE_ENTERPRISE () { 0x00000002 } # Windows Server 2008 Enterprise, Windows Server 2003, Enterprise Edition, or Windows 2000 Advanced Server is installed. Refer to the Remarks section for more information about this bit flag.
sub VER_SUITE_EMBEDDEDNT () { 0x00000040 } # Windows XP Embedded is installed.
sub VER_SUITE_PERSONAL () { 0x00000200 } # Windows Vista Home Premium, Windows Vista Home Basic, or Windows XP Home Edition is installed.
sub VER_SUITE_SINGLEUSERTS () { 0x00000100 } # Remote Desktop is supported, but only one interactive session is supported. This value is set unless the system is running in application server mode.
sub VER_SUITE_SMALLBUSINESS () { 0x00000001 } # Microsoft Small Business Server was once installed on the system, but may have been upgraded to another version of Windows. Refer to the Remarks section for more information about this bit flag.
sub VER_SUITE_SMALLBUSINESS_RESTRICTED () { 0x00000020 } # Microsoft Small Business Server is installed with the restrictive client license in force. Refer to the Remarks section for more information about this bit flag.
sub VER_SUITE_STORAGE_SERVER () { 0x00002000 } # Windows Storage Server 2003 R2 or Windows Storage Server 2003 is installed.
sub VER_SUITE_TERMINAL () { 0x00000010 } # Terminal Services is installed. This value is always set.
# If VER_SUITE_TERMINAL is set but VER_SUITE_SINGLEUSERTS is not set, the system is running in application server mode.
sub VER_SUITE_WH_SERVER () { 0x00008000 } # Windows Home Server is installed.
sub SM_TABLETPC () { 86 }
sub SM_MEDIACENTER () { 87 }
sub SM_STARTER () { 88 }
sub SM_SERVERR2 () { 89 }
sub PRODUCT_UNDEFINED () { 0x000 } # An unknown product
sub PRODUCT_ULTIMATE () { 0x001 } # Ultimate
sub PRODUCT_HOME_BASIC () { 0x002 } # Home Basic
sub PRODUCT_HOME_PREMIUM () { 0x003 } # Home Premium
sub PRODUCT_ENTERPRISE () { 0x004 } # Enterprise
sub PRODUCT_HOME_BASIC_N () { 0x005 } # Home Basic N
sub PRODUCT_BUSINESS () { 0x006 } # Business
sub PRODUCT_STANDARD_SERVER () { 0x007 } # Server Standard (full installation)
sub PRODUCT_DATACENTER_SERVER () { 0x008 } # Server Datacenter (full installation)
sub PRODUCT_SMALLBUSINESS_SERVER () { 0x009 } # Windows Small Business Server
sub PRODUCT_ENTERPRISE_SERVER () { 0x00A } # Server Enterprise (full installation)
sub PRODUCT_STARTER () { 0x00B } # Starter
sub PRODUCT_DATACENTER_SERVER_CORE () { 0x00C } # Server Datacenter (core installation)
sub PRODUCT_STANDARD_SERVER_CORE () { 0x00D } # Server Standard (core installation)
sub PRODUCT_ENTERPRISE_SERVER_CORE () { 0x00E } # Server Enterprise (core installation)
sub PRODUCT_ENTERPRISE_SERVER_IA64 () { 0x00F } # Server Enterprise for Itanium-based Systems
sub PRODUCT_BUSINESS_N () { 0x010 } # Business N
sub PRODUCT_WEB_SERVER () { 0x011 } # Web Server (full installation)
sub PRODUCT_CLUSTER_SERVER () { 0x012 } # HPC Edition
sub PRODUCT_HOME_SERVER () { 0x013 } # Home Server Edition
sub PRODUCT_STORAGE_EXPRESS_SERVER () { 0x014 } # Storage Server Express
sub PRODUCT_STORAGE_STANDARD_SERVER () { 0x015 } # Storage Server Standard
sub PRODUCT_STORAGE_WORKGROUP_SERVER () { 0x016 } # Storage Server Workgroup
sub PRODUCT_STORAGE_ENTERPRISE_SERVER () { 0x017 } # Storage Server Enterprise
sub PRODUCT_SERVER_FOR_SMALLBUSINESS () { 0x018 } # Windows Server 2008 for Windows Essential Server Solutions
sub PRODUCT_SMALLBUSINESS_SERVER_PREMIUM () { 0x019 } # Windows Small Business Server Premium
sub PRODUCT_HOME_PREMIUM_N () { 0x01A } # Home Premium N
sub PRODUCT_ENTERPRISE_N () { 0x01B } # Enterprise N
sub PRODUCT_ULTIMATE_N () { 0x01C } # Ultimate N
sub PRODUCT_WEB_SERVER_CORE () { 0x01D } # Web Server (core installation)
sub PRODUCT_MEDIUMBUSINESS_SERVER_MANAGEMENT () { 0x01E } # Windows Essential Business Server Management Server
sub PRODUCT_MEDIUMBUSINESS_SERVER_SECURITY () { 0x01F } # Windows Essential Business Server Security Server
sub PRODUCT_MEDIUMBUSINESS_SERVER_MESSAGING () { 0x020 } # Windows Essential Business Server Messaging Server
sub PRODUCT_SERVER_FOUNDATION () { 0x021 } # Server Foundation
sub PRODUCT_SERVER_FOR_SMALLBUSINESS_V () { 0x023 } # Windows Server 2008 without Hyper-V for Windows Essential Server Solutions
sub PRODUCT_STANDARD_SERVER_V () { 0x024 } # Server Standard without Hyper-V (full installation)
sub PRODUCT_DATACENTER_SERVER_V () { 0x025 } # Server Datacenter without Hyper-V (full installation)
sub PRODUCT_ENTERPRISE_SERVER_V () { 0x026 } # Server Enterprise without Hyper-V (full installation)
sub PRODUCT_DATACENTER_SERVER_CORE_V () { 0x027 } # Server Datacenter without Hyper-V (core installation)
sub PRODUCT_STANDARD_SERVER_CORE_V () { 0x028 } # Server Standard without Hyper-V (core installation)
sub PRODUCT_ENTERPRISE_SERVER_CORE_V () { 0x029 } # Server Enterprise without Hyper-V (core installation)
sub PRODUCT_HYPERV () { 0x02A } # Microsoft Hyper-V Server
sub PRODUCT_STARTER_N () { 0x02F } # Starter N
sub PRODUCT_PROFESSIONAL () { 0x030 } # Professional
sub PRODUCT_PROFESSIONAL_N () { 0x031 } # Professional N
sub PRODUCT_STARTER_E () { 0x042 } # Starter E
sub PRODUCT_HOME_BASIC_E () { 0x043 } # Home Basic E
sub PRODUCT_HOME_PREMIUM_E () { 0x044 } # Home Premium E
sub PRODUCT_PROFESSIONAL_E () { 0x045 } # Professional E
sub PRODUCT_ENTERPRISE_E () { 0x046 } # Enterprise E
sub PRODUCT_ULTIMATE_E () { 0x047 } # Ultimate E
sub PRODUCT_UNLICENSED () { 0xABCDABCD } # product has not been activated and is no longer in the grace period
sub PROCESSOR_ARCHITECTURE_AMD64 () { 9 } # x64 (AMD or Intel)
sub PROCESSOR_ARCHITECTURE_IA64 () { 6 } # Intel Itanium Processor Family (IPF)
sub PROCESSOR_ARCHITECTURE_INTEL () { 0 } # x86
sub PROCESSOR_ARCHITECTURE_UNKNOWN () { 0xffff } # Unknown architecture.
sub _GetProcessorArchitecture {
my $arch = {
386 => PROCESSOR_ARCHITECTURE_INTEL,
486 => PROCESSOR_ARCHITECTURE_INTEL,
586 => PROCESSOR_ARCHITECTURE_INTEL,
2200 => PROCESSOR_ARCHITECTURE_IA64,
8664 => PROCESSOR_ARCHITECTURE_AMD64,
}->{Win32::GetChipName()};
return defined($arch) ? $arch : PROCESSOR_ARCHITECTURE_UNKNOWN;
}
### This method is just a simple interface into GetOSVersion(). More
### specific or demanding situations should use that instead.
my ($cached_os, $cached_desc);
sub GetOSName {
unless (defined $cached_os) {
my($desc, $major, $minor, $build, $id, undef, undef, $suitemask, $producttype)
= Win32::GetOSVersion();
my $arch = _GetProcessorArchitecture();
my $productinfo = Win32::GetProductInfo(6, 0, 0, 0);
($cached_os, $cached_desc) = _GetOSName($desc, $major, $minor, $build, $id,
$suitemask, $producttype, $productinfo, $arch);
}
return wantarray ? ($cached_os, $cached_desc) : $cached_os;
}
sub GetOSDisplayName {
# Calling GetOSDisplayName() with arguments is for the test suite only!
my($name,$desc) = @_ ? @_ : GetOSName();
$name =~ s/^Win//;
if ($desc =~ /^Windows Home Server\b/ || $desc =~ /^Windows XP Professional x64 Edition\b/) {
($name, $desc) = ($desc, "");
}
elsif ($desc =~ s/\s*(Windows (.*) Server( \d+)?)//) {
$name = "$1 $name";
$desc =~ s/^\s+//;
}
else {
for ($name) {
s/^/Windows / unless /^Win32s$/;
s/\/.Net//;
s/NT(\d)/NT $1/;
if ($desc =~ s/\s*(HPC|Small Business|Web) Server//) {
my $name = $1;
$desc =~ s/^\s*//;
s/(200.)/$name Server $1/;
}
s/^Windows (20(03|08|12))/Windows Server $1/;
}
}
$name .= " $desc" if length $desc;
return $name;
}
sub _GetSystemMetrics {
my($index,$metrics) = @_;
return Win32::GetSystemMetrics($index) unless ref $metrics;
return $metrics->{$index} if ref $metrics eq "HASH" && defined $metrics->{$index};
return 1 if ref $metrics eq "ARRAY" && grep $_ == $index, @$metrics;
return 0;
}
sub _GetOSName {
# The $metrics argument only exists for the benefit of t/GetOSName.t
my($csd, $major, $minor, $build, $id, $suitemask, $producttype, $productinfo, $arch, $metrics) = @_;
my($os,@tags);
my $desc = "";
if ($id == 0) {
$os = "Win32s";
}
elsif ($id == 1) {
if ($minor == 0) {
$os = "95";
}
elsif ($minor == 10) {
$os = "98";
}
elsif ($minor == 90) {
$os = "Me";
}
}
elsif ($id == 2) {
if ($major == 3) {
$os = "NT3.51";
}
elsif ($major == 4) {
$os = "NT4";
}
elsif ($major == 5) {
if ($minor == 0) {
$os = "2000";
if ($producttype == VER_NT_WORKSTATION) {
$desc = "Professional";
}
else {
if ($suitemask & VER_SUITE_DATACENTER) {
$desc = "Datacenter Server";
}
elsif ($suitemask & VER_SUITE_ENTERPRISE) {
$desc = "Advanced Server";
}
elsif ($suitemask & VER_SUITE_SMALLBUSINESS_RESTRICTED) {
$desc = "Small Business Server";
}
else {
$desc = "Server";
}
}
# XXX ignoring "Windows 2000 Advanced Server Limited Edition" for Itanium
# XXX and "Windows 2000 Datacenter Server Limited Edition" for Itanium
}
elsif ($minor == 1) {
$os = "XP/.Net";
if (_GetSystemMetrics(SM_MEDIACENTER, $metrics)) {
$desc = "Media Center Edition";
}
elsif (_GetSystemMetrics(SM_TABLETPC, $metrics)) {
# Tablet PC Edition is based on XP Pro
$desc = "Tablet PC Edition";
}
elsif (_GetSystemMetrics(SM_STARTER, $metrics)) {
$desc = "Starter Edition";
}
elsif ($suitemask & VER_SUITE_PERSONAL) {
$desc = "Home Edition";
}
else {
$desc = "Professional";
}
# XXX ignoring all Windows XP Embedded and Fundamentals versions
}
elsif ($minor == 2) {
$os = "2003";
if (_GetSystemMetrics(SM_SERVERR2, $metrics)) {
# XXX R2 was released for all x86 and x64 versions,
# XXX but only Enterprise Edition for Itanium.
$desc = "R2";
}
if ($suitemask == VER_SUITE_STORAGE_SERVER) {
$desc .= " Windows Storage Server";
}
elsif ($suitemask == VER_SUITE_WH_SERVER) {
$desc .= " Windows Home Server";
}
elsif ($producttype == VER_NT_WORKSTATION && $arch == PROCESSOR_ARCHITECTURE_AMD64) {
$desc .= " Windows XP Professional x64 Edition";
}
# Test for the server type.
if ($producttype != VER_NT_WORKSTATION) {
if ($arch == PROCESSOR_ARCHITECTURE_IA64) {
if ($suitemask & VER_SUITE_DATACENTER) {
$desc .= " Datacenter Edition for Itanium-based Systems";
}
elsif ($suitemask & VER_SUITE_ENTERPRISE) {
$desc .= " Enterprise Edition for Itanium-based Systems";
}
}
elsif ($arch == PROCESSOR_ARCHITECTURE_AMD64) {
if ($suitemask & VER_SUITE_DATACENTER) {
$desc .= " Datacenter x64 Edition";
}
elsif ($suitemask & VER_SUITE_ENTERPRISE) {
$desc .= " Enterprise x64 Edition";
}
else {
$desc .= " Standard x64 Edition";
}
}
else {
if ($suitemask & VER_SUITE_COMPUTE_SERVER) {
$desc .= " Windows Compute Cluster Server";
}
elsif ($suitemask & VER_SUITE_DATACENTER) {
$desc .= " Datacenter Edition";
}
elsif ($suitemask & VER_SUITE_ENTERPRISE) {
$desc .= " Enterprise Edition";
}
elsif ($suitemask & VER_SUITE_BLADE) {
$desc .= " Web Edition";
}
elsif ($suitemask & VER_SUITE_SMALLBUSINESS_RESTRICTED) {
$desc .= " Small Business Server";
}
else {
if ($desc !~ /Windows (Home|Storage) Server/) {
$desc .= " Standard Edition";
}
}
}
}
}
}
elsif ($major == 6) {
if ($minor == 0) {
if ($producttype == VER_NT_WORKSTATION) {
$os = "Vista";
}
else {
$os = "2008";
}
}
elsif ($minor == 1) {
if ($producttype == VER_NT_WORKSTATION) {
$os = "7";
}
else {
$os = "2008";
$desc = "R2";
}
}
elsif ($minor == 2) {
if ($producttype == VER_NT_WORKSTATION) {
$os = "8";
}
else {
$os = "2012";
}
}
if ($productinfo == PRODUCT_ULTIMATE) {
$desc .= " Ultimate";
}
elsif ($productinfo == PRODUCT_HOME_PREMIUM) {
$desc .= " Home Premium";
}
elsif ($productinfo == PRODUCT_HOME_BASIC) {
$desc .= " Home Basic";
}
elsif ($productinfo == PRODUCT_ENTERPRISE) {
$desc .= " Enterprise";
}
elsif ($productinfo == PRODUCT_BUSINESS) {
# "Windows 7 Business" had a name change to "Windows 7 Professional"
$desc .= $minor == 0 ? " Business" : " Professional";
}
elsif ($productinfo == PRODUCT_STARTER) {
$desc .= " Starter";
}
elsif ($productinfo == PRODUCT_CLUSTER_SERVER) {
$desc .= " HPC Server";
}
elsif ($productinfo == PRODUCT_DATACENTER_SERVER) {
$desc .= " Datacenter";
}
elsif ($productinfo == PRODUCT_DATACENTER_SERVER_CORE) {
$desc .= " Datacenter Edition (core installation)";
}
elsif ($productinfo == PRODUCT_ENTERPRISE_SERVER) {
$desc .= " Enterprise";
}
elsif ($productinfo == PRODUCT_ENTERPRISE_SERVER_CORE) {
$desc .= " Enterprise Edition (core installation)";
}
elsif ($productinfo == PRODUCT_ENTERPRISE_SERVER_IA64) {
$desc .= " Enterprise Edition for Itanium-based Systems";
}
elsif ($productinfo == PRODUCT_SMALLBUSINESS_SERVER) {
$desc .= " Small Business Server";
}
elsif ($productinfo == PRODUCT_SMALLBUSINESS_SERVER_PREMIUM) {
$desc .= " Small Business Server Premium Edition";
}
elsif ($productinfo == PRODUCT_STANDARD_SERVER) {
$desc .= " Standard";
}
elsif ($productinfo == PRODUCT_STANDARD_SERVER_CORE) {
$desc .= " Standard Edition (core installation)";
}
elsif ($productinfo == PRODUCT_WEB_SERVER) {
$desc .= " Web Server";
}
elsif ($productinfo == PRODUCT_PROFESSIONAL) {
$desc .= " Professional";
}
if ($arch == PROCESSOR_ARCHITECTURE_INTEL) {
$desc .= " (32-bit)";
}
elsif ($arch == PROCESSOR_ARCHITECTURE_AMD64) {
$desc .= " (64-bit)";
}
}
}
unless (defined $os) {
warn "Unknown Windows version [$id:$major:$minor]";
return;
}
for ($desc) {
s/\s\s+/ /g;
s/^\s//;
s/\s$//;
}
# XXX What about "Small Business Server"? NT, 200, 2003, 2008 editions...
if ($major >= 5) {
# XXX XP, Vista, 7 all have starter editions
#push(@tags, "Starter Edition") if _GetSystemMetrics(SM_STARTER, $metrics);
}
if (@tags) {
unshift(@tags, $desc) if length $desc;
$desc = join(" ", @tags);
}
if (length $csd) {
$desc .= " " if length $desc;
$desc .= $csd;
}
return ("Win$os", $desc);
}
# "no warnings 'redefine';" doesn't work for 5.8.7 and earlier
local $^W = 0;
bootstrap Win32;
1;
__END__
=head1 NAME
Win32 - Interfaces to some Win32 API Functions
=head1 DESCRIPTION
The Win32 module contains functions to access Win32 APIs.
=head2 Alphabetical Listing of Win32 Functions
It is recommended to C<use Win32;> before any of these functions;
however, for backwards compatibility, those marked as [CORE] will
automatically do this for you.
In the function descriptions below the term I<Unicode string> is used
to indicate that the string may contain characters outside the system
codepage. The caveat I<If supported by the core Perl version>
generally means Perl 5.8.9 and later, though some Unicode pathname
functionality may work on earlier versions.
=over
=item Win32::AbortSystemShutdown(MACHINE)
Aborts a system shutdown (started by the
InitiateSystemShutdown function) on the specified MACHINE.
=item Win32::BuildNumber()
[CORE] Returns the ActivePerl build number. This function is
only available in the ActivePerl binary distribution.
=item Win32::CopyFile(FROM, TO, OVERWRITE)
[CORE] The Win32::CopyFile() function copies an existing file to a new
file. All file information like creation time and file attributes will
be copied to the new file. However it will B<not> copy the security
information. If the destination file already exists it will only be
overwritten when the OVERWRITE parameter is true. But even this will
not overwrite a read-only file; you have to unlink() it first
yourself.
=item Win32::CreateDirectory(DIRECTORY)
Creates the DIRECTORY and returns a true value on success. Check $^E
on failure for extended error information.
DIRECTORY may contain Unicode characters outside the system codepage.
Once the directory has been created you can use
Win32::GetANSIPathName() to get a name that can be passed to system
calls and external programs.
=item Win32::CreateFile(FILE)
Creates the FILE and returns a true value on success. Check $^E on
failure for extended error information.
FILE may contain Unicode characters outside the system codepage. Once
the file has been created you can use Win32::GetANSIPathName() to get
a name that can be passed to system calls and external programs.
=item Win32::DomainName()
[CORE] Returns the name of the Microsoft Network domain or workgroup
that the owner of the current perl process is logged into. The
"Workstation" service must be running to determine this
information. This function does B<not> work on Windows 9x.
=item Win32::ExpandEnvironmentStrings(STRING)
Takes STRING and replaces all referenced environment variable
names with their defined values. References to environment variables
take the form C<%VariableName%>. Case is ignored when looking up the
VariableName in the environment. If the variable is not found then the
original C<%VariableName%> text is retained. Has the same effect
as the following:
$string =~ s/%([^%]*)%/$ENV{$1} || "%$1%"/eg
However, this function may return a Unicode string if the environment
variable being expanded hasn't been assigned to via %ENV. Access
to %ENV is currently always using byte semantics.
=item Win32::FormatMessage(ERRORCODE)
[CORE] Converts the supplied Win32 error number (e.g. returned by
Win32::GetLastError()) to a descriptive string. Analogous to the
perror() standard-C library function. Note that C<$^E> used
in a string context has much the same effect.
C:\> perl -e "$^E = 26; print $^E;"
The specified disk or diskette cannot be accessed
=item Win32::FsType()
[CORE] Returns the name of the filesystem of the currently active
drive (like 'FAT' or 'NTFS'). In list context it returns three values:
(FSTYPE, FLAGS, MAXCOMPLEN). FSTYPE is the filesystem type as
before. FLAGS is a combination of values of the following table:
0x00000001 supports case-sensitive filenames
0x00000002 preserves the case of filenames
0x00000004 supports Unicode in filenames
0x00000008 preserves and enforces ACLs
0x00000010 supports file-based compression
0x00000020 supports disk quotas
0x00000040 supports sparse files
0x00000080 supports reparse points
0x00000100 supports remote storage
0x00008000 is a compressed volume (e.g. DoubleSpace)
0x00010000 supports object identifiers
0x00020000 supports the Encrypted File System (EFS)
MAXCOMPLEN is the maximum length of a filename component (the part
between two backslashes) on this file system.
=item Win32::FreeLibrary(HANDLE)
Unloads a previously loaded dynamic-link library. The HANDLE is
no longer valid after this call. See L<LoadLibrary|Win32::LoadLibrary(LIBNAME)>
for information on dynamically loading a library.
=item Win32::GetACP()
Returns the current Windows ANSI code page identifier for the operating
system. See also GetOEMCP(), GetConsoleCP() and GetConsoleOutputCP().
=item Win32::GetANSIPathName(FILENAME)
Returns an ANSI version of FILENAME. This may be the short name
if the long name cannot be represented in the system codepage.
While not currently implemented, it is possible that in the future
this function will convert only parts of the path to FILENAME to a
short form.
If FILENAME doesn't exist on the filesystem, or if the filesystem
doesn't support short ANSI filenames, then this function will
translate the Unicode name into the system codepage using replacement
characters.
=item Win32::GetArchName()
Use of this function is deprecated. It is equivalent with
$ENV{PROCESSOR_ARCHITECTURE}. This might not work on Win9X.
=item Win32::GetChipName()
Returns the processor type: 386, 486 or 586 for x86 processors, 8664
for the x64 processor and 2200 for the Itanium. Since it returns the
native processor type it will return a 64-bit processor type even when
called from a 32-bit Perl running on 64-bit Windows.
=item Win32::GetConsoleCP()
Returns the input code page used by the console associated with the
calling process. To set the console's input code page, see
SetConsoleCP(). See also GetConsoleOutputCP(), GetACP() and
GetOEMCP().
=item Win32::GetConsoleOutputCP()
Returns the output code page used by the console associated with the
calling process. To set the console's output code page, see
SetConsoleOutputCP(). See also GetConsoleCP(), GetACP(), and
GetOEMCP().
=item Win32::GetCwd()
[CORE] Returns the current active drive and directory. This function
does not return a UNC path, since the functionality required for such
a feature is not available under Windows 95.
If supported by the core Perl version, this function will return an
ANSI path name for the current directory if the long pathname cannot
be represented in the system codepage.
=item Win32::GetCurrentProcessId()
Returns the process identifier of the current process. Until the
process terminates, the process identifier uniquely identifies the
process throughout the system.
The current process identifier is normally also available via the
predefined $$ variable. Under fork() emulation however $$ may contain
a pseudo-process identifier that is only meaningful to the Perl
kill(), wait() and waitpid() functions. The
Win32::GetCurrentProcessId() function will always return the regular
Windows process id, even when called from inside a pseudo-process.
=item Win32::GetCurrentThreadId()
Returns the thread identifier of the calling thread. Until the thread
terminates, the thread identifier uniquely identifies the thread
throughout the system.
=item Win32::GetFileVersion(FILENAME)
Returns the file version number from the VERSIONINFO resource of
the executable file or DLL. This is a tuple of four 16 bit numbers.
In list context these four numbers will be returned. In scalar context
they are concatenated into a string, separated by dots.
=item Win32::GetFolderPath(FOLDER [, CREATE])
Returns the full pathname of one of the Windows special folders.
The folder will be created if it doesn't exist and the optional CREATE
argument is true. The following FOLDER constants are defined by the
Win32 module, but only exported on demand:
CSIDL_ADMINTOOLS
CSIDL_APPDATA
CSIDL_CDBURN_AREA
CSIDL_COMMON_ADMINTOOLS
CSIDL_COMMON_APPDATA
CSIDL_COMMON_DESKTOPDIRECTORY
CSIDL_COMMON_DOCUMENTS
CSIDL_COMMON_FAVORITES
CSIDL_COMMON_MUSIC
CSIDL_COMMON_PICTURES
CSIDL_COMMON_PROGRAMS
CSIDL_COMMON_STARTMENU
CSIDL_COMMON_STARTUP
CSIDL_COMMON_TEMPLATES
CSIDL_COMMON_VIDEO
CSIDL_COOKIES
CSIDL_DESKTOP
CSIDL_DESKTOPDIRECTORY
CSIDL_FAVORITES
CSIDL_FONTS
CSIDL_HISTORY
CSIDL_INTERNET_CACHE
CSIDL_LOCAL_APPDATA
CSIDL_MYMUSIC
CSIDL_MYPICTURES
CSIDL_MYVIDEO
CSIDL_NETHOOD
CSIDL_PERSONAL
CSIDL_PRINTHOOD
CSIDL_PROFILE
CSIDL_PROGRAMS
CSIDL_PROGRAM_FILES
CSIDL_PROGRAM_FILES_COMMON
CSIDL_RECENT
CSIDL_RESOURCES
CSIDL_RESOURCES_LOCALIZED
CSIDL_SENDTO
CSIDL_STARTMENU
CSIDL_STARTUP
CSIDL_SYSTEM
CSIDL_TEMPLATES
CSIDL_WINDOWS
Note that not all folders are defined on all versions of Windows.
Please refer to the MSDN documentation of the CSIDL constants,
currently available at:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/reference/enums/csidl.asp
This function will return an ANSI folder path if the long name cannot
be represented in the system codepage. Use Win32::GetLongPathName()
on the result of Win32::GetFolderPath() if you want the Unicode
version of the folder name.
=item Win32::GetFullPathName(FILENAME)
[CORE] GetFullPathName combines the FILENAME with the current drive
and directory name and returns a fully qualified (aka, absolute)
path name. In list context it returns two elements: (PATH, FILE) where
PATH is the complete pathname component (including trailing backslash)
and FILE is just the filename part. Note that no attempt is made to
convert 8.3 components in the supplied FILENAME to longnames or
vice-versa. Compare with Win32::GetShortPathName() and
Win32::GetLongPathName().
If supported by the core Perl version, this function will return an
ANSI path name if the full pathname cannot be represented in the
system codepage.
=item Win32::GetLastError()
[CORE] Returns the last error value generated by a call to a Win32 API
function. Note that C<$^E> used in a numeric context amounts to the
same value.
=item Win32::GetLongPathName(PATHNAME)
[CORE] Returns a representation of PATHNAME composed of longname
components (if any). The result may not necessarily be longer
than PATHNAME. No attempt is made to convert PATHNAME to the
absolute path. Compare with Win32::GetShortPathName() and
Win32::GetFullPathName().
This function may return the pathname in Unicode if it cannot be
represented in the system codepage. Use Win32::GetANSIPathName()
before passing the path to a system call or another program.
=item Win32::GetNextAvailDrive()
[CORE] Returns a string in the form of "<d>:" where <d> is the first
available drive letter.
=item Win32::GetOEMCP()
Returns the current original equipment manufacturer (OEM) code page
identifier for the operating system. See also GetACP(), GetConsoleCP()
and GetConsoleOutputCP().
=item Win32::GetOSDisplayName()
Returns the "marketing" name of the Windows operating system version
being used. It returns names like these (random samples):
Windows 2000 Datacenter Server
Windows XP Professional
Windows XP Tablet PC Edition
Windows Home Server
Windows Server 2003 Enterprise Edition for Itanium-based Systems
Windows Vista Ultimate (32-bit)
Windows Small Business Server 2008 R2 (64-bit)
The display name describes the native Windows version, so even on a
32-bit Perl this function may return a "Windows ... (64-bit)" name
when running on a 64-bit Windows.
This function should only be used to display the actual OS name to the
user; it should not be used to determine the class of operating systems
this system belongs to. The Win32::GetOSName(), Win32::GetOSVersion,
Win32::GetProductInfo() and Win32::GetSystemMetrics() functions provide
the base information to check for certain capabilities, or for families
of OS releases.
=item Win32::GetOSName()
In scalar context returns the name of the Win32 operating system
being used. In list context returns a two element list of the OS name
and whatever edition information is known about the particular build
(for Win9X boxes) and whatever service packs have been installed.
The latter is roughly equivalent to the first item returned by
GetOSVersion() in list context.
The description will also include tags for other special editions,
like "R2", "Media Center", "Tablet PC", or "Starter Edition".
Currently the possible values for the OS name are
WinWin32s
Win95
Win98
WinMe
WinNT3.51
WinNT4
Win2000
WinXP/.Net
Win2003
WinHomeSvr
WinVista
Win2008
Win7
This routine is just a simple interface into GetOSVersion(). More
specific or demanding situations should use that instead. Another
option would be to use POSIX::uname(), however the latter appears to
report only the OS family name and not the specific OS. In scalar
context it returns just the ID.
The name "WinXP/.Net" is used for historical reasons only, to maintain
backwards compatibility of the Win32 module. Windows .NET Server has
been renamed as Windows 2003 Server before final release and uses a
different major/minor version number than Windows XP.
Similarly the name "WinWin32s" should have been "Win32s" but has been
kept as-is for backwards compatibility reasons too.
=item Win32::GetOSVersion()
[CORE] Returns the list (STRING, MAJOR, MINOR, BUILD, ID), where the
elements are, respectively: An arbitrary descriptive string, the major
version number of the operating system, the minor version number, the
build number, and a digit indicating the actual operating system.
For the ID, the values are 0 for Win32s, 1 for Windows 9X/Me and 2 for
Windows NT/2000/XP/2003/Vista/2008/7. In scalar context it returns just
the ID.
Currently known values for ID MAJOR and MINOR are as follows:
OS ID MAJOR MINOR
Win32s 0 - -
Windows 95 1 4 0
Windows 98 1 4 10
Windows Me 1 4 90
Windows NT 3.51 2 3 51
Windows NT 4 2 4 0
Windows 2000 2 5 0
Windows XP 2 5 1
Windows Server 2003 2 5 2
Windows Server 2003 R2 2 5 2
Windows Home Server 2 5 2
Windows Vista 2 6 0
Windows Server 2008 2 6 0
Windows 7 2 6 1
Windows Server 2008 R2 2 6 1
Windows 8 2 6 2
Windows Server 2012 2 6 2
On Windows NT 4 SP6 and later this function returns the following
additional values: SPMAJOR, SPMINOR, SUITEMASK, PRODUCTTYPE.
The version numbers for Windows 2003 and Windows Home Server are
identical; the SUITEMASK field must be used to differentiate between
them.
The version numbers for Windows Vista and Windows Server 2008 are
identical; the PRODUCTTYPE field must be used to differentiate between
them.
The version numbers for Windows 7 and Windows Server 2008 R2 are
identical; the PRODUCTTYPE field must be used to differentiate between
them.
The version numbers for Windows 8 and Windows Server 2012 are
identical; the PRODUCTTYPE field must be used to differentiate between
them.
SPMAJOR and SPMINOR are the version numbers of the latest
installed service pack.
SUITEMASK is a bitfield identifying the product suites available on
the system. Known bits are:
VER_SUITE_SMALLBUSINESS 0x00000001
VER_SUITE_ENTERPRISE 0x00000002
VER_SUITE_BACKOFFICE 0x00000004
VER_SUITE_COMMUNICATIONS 0x00000008
VER_SUITE_TERMINAL 0x00000010
VER_SUITE_SMALLBUSINESS_RESTRICTED 0x00000020
VER_SUITE_EMBEDDEDNT 0x00000040
VER_SUITE_DATACENTER 0x00000080
VER_SUITE_SINGLEUSERTS 0x00000100
VER_SUITE_PERSONAL 0x00000200
VER_SUITE_BLADE 0x00000400
VER_SUITE_EMBEDDED_RESTRICTED 0x00000800
VER_SUITE_SECURITY_APPLIANCE 0x00001000
VER_SUITE_STORAGE_SERVER 0x00002000
VER_SUITE_COMPUTE_SERVER 0x00004000
VER_SUITE_WH_SERVER 0x00008000
The VER_SUITE_xxx names are listed here to cross reference the Microsoft
documentation. The Win32 module does not provide symbolic names for these
constants.
PRODUCTTYPE provides additional information about the system. It should
be one of the following integer values:
1 - Workstation (NT 4, 2000 Pro, XP Home, XP Pro, Vista, etc)
2 - Domaincontroller
3 - Server (2000 Server, Server 2003, Server 2008, etc)
Note that a server that is also a domain controller is reported as
PRODUCTTYPE 2 (Domaincontroller) and not PRODUCTTYPE 3 (Server).
=item Win32::GetShortPathName(PATHNAME)
[CORE] Returns a representation of PATHNAME that is composed of short
(8.3) path components where available. For path components where the
file system has not generated the short form the returned path will
use the long form, so this function might still for instance return a
path containing spaces. Returns C<undef> when the PATHNAME does not
exist. Compare with Win32::GetFullPathName() and
Win32::GetLongPathName().
=item Win32::GetSystemMetrics(INDEX)
Retrieves the specified system metric or system configuration setting.
Please refer to the Microsoft documentation of the GetSystemMetrics()
function for a reference of available INDEX values. All system
metrics return integer values.
=item Win32::GetProcAddress(INSTANCE, PROCNAME)
Returns the address of a function inside a loaded library. The
information about what you can do with this address has been lost in
the mist of time. Use the Win32::API module instead of this deprecated
function.
=item Win32::GetProductInfo(OSMAJOR, OSMINOR, SPMAJOR, SPMINOR)
Retrieves the product type for the operating system on the local
computer, and maps the type to the product types supported by the
specified operating system. Please refer to the Microsoft
documentation of the GetProductInfo() function for more information
about the parameters and return value. This function requires Windows
Vista or later.
See also the Win32::GetOSName() and Win32::GetOSDisplayName()
functions which provide a higher level abstraction of the data
returned by this function.
=item Win32::GetTickCount()
[CORE] Returns the number of milliseconds elapsed since the last
system boot. Resolution is limited to system timer ticks (about 10ms
on WinNT and 55ms on Win9X).
=item Win32::GuidGen()
Creates a globally unique 128 bit integer that can be used as a
persistent identifier in a distributed setting. To a very high degree
of certainty this function returns a unique value. No other
invocation, on the same or any other system (networked or not), should
return the same value.
The return value is formatted according to OLE conventions, as groups
of hex digits with surrounding braces. For example:
{09531CF1-D0C7-4860-840C-1C8C8735E2AD}
=item Win32::InitiateSystemShutdown
(MACHINE, MESSAGE, TIMEOUT, FORCECLOSE, REBOOT)
Shutsdown the specified MACHINE, notifying users with the
supplied MESSAGE, within the specified TIMEOUT interval. Forces
closing of all documents without prompting the user if FORCECLOSE is
true, and reboots the machine if REBOOT is true. This function works
only on WinNT.
=item Win32::IsAdminUser()
Returns non zero if the account in whose security context the
current process/thread is running belongs to the local group of
Administrators in the built-in system domain; returns 0 if not.
On Windows Vista it will only return non-zero if the process is
actually running with elevated privileges. Returns C<undef>
and prints a warning if an error occurred. This function always
returns 1 on Win9X.
=item Win32::IsWinNT()
[CORE] Returns non zero if the Win32 subsystem is Windows NT.
=item Win32::IsWin95()
[CORE] Returns non zero if the Win32 subsystem is Windows 95.
=item Win32::LoadLibrary(LIBNAME)
Loads a dynamic link library into memory and returns its module
handle. This handle can be used with Win32::GetProcAddress() and
Win32::FreeLibrary(). This function is deprecated. Use the Win32::API
module instead.
=item Win32::LoginName()
[CORE] Returns the username of the owner of the current perl process.
The return value may be a Unicode string.
=item Win32::LookupAccountName(SYSTEM, ACCOUNT, DOMAIN, SID, SIDTYPE)
Looks up ACCOUNT on SYSTEM and returns the domain name the SID and
the SID type.
=item Win32::LookupAccountSID(SYSTEM, SID, ACCOUNT, DOMAIN, SIDTYPE)
Looks up SID on SYSTEM and returns the account name, domain name,
and the SID type.
=item Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]])
Create a dialog box containing MESSAGE. FLAGS specifies the
required icon and buttons according to the following table:
0 = OK
1 = OK and Cancel
2 = Abort, Retry, and Ignore
3 = Yes, No and Cancel
4 = Yes and No
5 = Retry and Cancel
MB_ICONSTOP "X" in a red circle
MB_ICONQUESTION question mark in a bubble
MB_ICONEXCLAMATION exclamation mark in a yellow triangle
MB_ICONINFORMATION "i" in a bubble
TITLE specifies an optional window title. The default is "Perl".
The function returns the menu id of the selected push button:
0 Error
1 OK
2 Cancel
3 Abort
4 Retry
5 Ignore
6 Yes
7 No
=item Win32::NodeName()
[CORE] Returns the Microsoft Network node-name of the current machine.
=item Win32::OutputDebugString(STRING)
Sends a string to the application or system debugger for display.
The function does nothing if there is no active debugger.
Alternatively one can use the I<Debug Viewer> application to
watch the OutputDebugString() output:
http://www.microsoft.com/technet/sysinternals/utilities/debugview.mspx
=item Win32::RegisterServer(LIBRARYNAME)
Loads the DLL LIBRARYNAME and calls the function DllRegisterServer.
=item Win32::SetChildShowWindow(SHOWWINDOW)
[CORE] Sets the I<ShowMode> of child processes started by system().
By default system() will create a new console window for child
processes if Perl itself is not running from a console. Calling
SetChildShowWindow(0) will make these new console windows invisible.
Calling SetChildShowWindow() without arguments reverts system() to the
default behavior. The return value of SetChildShowWindow() is the
previous setting or C<undef>.
The following symbolic constants for SHOWWINDOW are available
(but not exported) from the Win32 module: SW_HIDE, SW_SHOWNORMAL,
SW_SHOWMINIMIZED, SW_SHOWMAXIMIZED and SW_SHOWNOACTIVATE.
=item Win32::SetConsoleCP(ID)
Sets the input code page used by the console associated with the
calling process. The return value of SetConsoleCP() is nonzero on
success or zero on failure. To get the console's input code page, see
GetConsoleCP().
=item Win32::SetConsoleOutputCP(ID)
Sets the output code page used by the console associated with the
calling process. The return value of SetConsoleOutputCP() is nonzero on
success or zero on failure. To get the console's output code page, see
GetConsoleOutputCP().
=item Win32::SetCwd(NEWDIRECTORY)
[CORE] Sets the current active drive and directory. This function does not
work with UNC paths, since the functionality required to required for
such a feature is not available under Windows 95.
=item Win32::SetLastError(ERROR)
[CORE] Sets the value of the last error encountered to ERROR. This is
that value that will be returned by the Win32::GetLastError()
function.
=item Win32::Sleep(TIME)
[CORE] Pauses for TIME milliseconds. The timeslices are made available
to other processes and threads.
=item Win32::Spawn(COMMAND, ARGS, PID)
[CORE] Spawns a new process using the supplied COMMAND, passing in
arguments in the string ARGS. The pid of the new process is stored in
PID. This function is deprecated. Please use the Win32::Process module
instead.
=item Win32::UnregisterServer(LIBRARYNAME)
Loads the DLL LIBRARYNAME and calls the function
DllUnregisterServer.
=back
=cut
|