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
|
#!/bin/bash
#####################################################################
##
## smb.conf parser class
##
## Copyright (C) Kurt Pfeifle <kpfeifle@danka.de>, 2004.
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 3 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, see <http://www.gnu.org/licenses/>.
##
######################################################################
######################################################################
## Here an example calling sequence
##!/bin/sh
## set -x
## source VampireDriversFunctions
##
## Start local variables
##
## You must define these variable (possibly in a source script)
## nthost=192.168.17.1
## printeradmin=Administrator
## adminpasswd=not4you
## smbhost=knoppix
## smbprinteradmin=knoppix
## smbadminpasswd=knoppix
##
## End of local variables
##
##
## functions to call
##
## fetchenumdrivers3listfromNThost # repeat, if no success at first
## createdrivernamelist
## createprinterlistwithUNCnames # repeat, if no success at first
## createmapofprinterstodriver
## splitenumdrivers3list
## makesubdirsforWIN40driverlist
## splitWIN40fileintoindividualdriverfiles
## fetchtheWIN40driverfiles
## uploadallWIN40drivers
## makesubdirsforW32X86driverlist
## splitW32X86fileintoindividualdriverfiles
## fetchtheW32X86driverfiles
## uploadallW32X86drivers
## End of example calling sequence
######################################################################
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
function vampiredrivers_readme()
{
echo -e " \n\
############################################################################
#
# About the \"Vampire Printer Drivers\" set of functions....
# --------------------------------------------------------
#
# (C) Kurt Pfeifle <kpfeifle@danka.de>, 2004
# License: GPL
#
# ------------------------------------------------------------
#
# Version: 0.8 (largely \"self-documented\" now, but not yet
# completely -- if it ever will be....)
#
# Thanks a lot to Fabian Franz for helping me with some important
# Bash-Scripting-Questions!
#
# This set of functions provides a framework to snatch all printer
# driver info and related files from a Windows NT print server.
# It then uploads and installs the drivers to a Samba server. (The
# Samba server needs to be prepared for this: a valid [print$]
# share, with write access set for a user with SePrintOperatorPrivilege.)
#
# The main commands used are \"smbclient\" and \"rpcclient\" combined
# with \"grep\", \"sed\" and \"awk\". Probably a Perl or Python script
# would be better suited to do this, mainly because we have to cope
# with printer and driver names which are containing spaces in
# them, so a lot of shell escaping is required to handle these.
# Also, I am not very savvy in scripting, so I invented some very
# obscure methods to work around my knowledge gaps. When I download
# the driver files from the Windows NT box, I put all related driver
# files into their own sub directory, using the same name as the
# driver. Also, driver versions \"0\", \"2\" and \"3\" are placed in
# further subdirectories.
#
#
# Known problems:
# ---------------
#
# 1) I found one printer driver containing a \"slash\" which is not
# handled by this script: \"HP Color LaserJet 5/5M PS\". (There
# are more of these in the wild, of course.) -- The reason: I
# didn't find a way to create a Unix directory containing a \"slash\".
# UPDATE: The script replaces the \"/\" with a \"_\" and also renames
# the drivername accordingly, when it is uploaded to the Samba
# [print$] share....
#
# 2) There is an unsolved problem in case a real file name deviates
# in its case sensitive spelling from how it is displayed by the
# \"rpcclient enumdrivers\" command. I encountered cases where
# rpcclient displayed \"PS5UI.DLL\" as a file name, but \"smbclient
# mget\" retrieved \"ps5ui.dll\" from the NT printserver, and the
# driverinstallation failed because \"smbclient mput\" tried to put
# \"PS5UI.DLL\" back onto the Samba server where UNIX only had
# \"ps5ui.dll\" available (which of course failed). -- UPDATE: this
# is now solved. All files are renamed now to the same
# case-sensitive spelling as \"rpcclient ... enumdrivers 3\"
# announces. This includes renaming into both, uppercase or
# lowercase, as the case might be....
#
# 3) This script is probably not portable at all and relies on lots
# of Bash-isms.
#
# 4) This script runs with rpcclient from Samba-3.0.2a (or later) only
# (because it uses the \"Version\" parameter for \"adddriver\").
#
# The following functions use a few external variables to log
# into the 2 hosts. We suggest that you create a file which
# contains the variables and that you source that file at the
# beginning of this script...
#
# #################################################################
#
# ntprinteradmin=Administrator # any account on the NT host
# # with SePrintOperatorPrivilege privileges
# ntadminpasswd=not4you # the printer admin password on
# # the NT print server
# nthost=windowsntprintserverbox # the netbios name of the NT print
# # server
#
# smbprinteradmin=knoppix # an account on the Samba server
# # with SePrintOperatorPrivilege privileges
# smbadminpasswd=2secret4you # the printer admin password on
# # the Samba server
# smbhost=knoppix # the netbios name of the Samba
# # print server
#
# #################################################################
#
#
# NOTE: these functions also work for 2 NT print servers: snatch all
# drivers from the first, and upload them to the second server (which
# takes the role of the \"Samba\" server). Of course they also work
# for 2 Samba servers: snatch all drivers from the first (which takes
# the role of the NT print server) and upload them to the second....
#
#
# ............PRESS \"q\" TO QUIT............" \
|less
}
#set -x
# -----------------------------------------------------------------------------
# ----------- print a little help... ------------------------------------------
# -----------------------------------------------------------------------------
function helpwithvampiredrivers()
{
if stringinstring help $@ ; then
helpwithvampiredrivers ;
else
echo " ";
echo " 1. Run the functions of this script one by one.";
echo " ";
echo " 2. List all functions with the \"enumallfunctions\" call.";
echo " ";
echo " 3. After each functions' run, check if it completed successfully.";
echo " ";
echo " 4. For each function, you can ask for separate help by typing";
echo " \"<functionname> --help\"."
echo " ";
echo " 5. Often network conditions prevent the MS-RPC calls"
echo " implemented by Samba to succeed at the first attempt."
echo " You may have more joy if you try more than once or twice....";
echo " ";
echo " 6. I can not support end-users who have problems with this script."
echo " However, we are available for paid, professional consulting,"
echo " training and troubleshooting work.";
echo " ";
echo " ";
fi
}
# -----------------------------------------------------------------------------
# ----------- enumerate all builtin functions... ------------------------------
# -----------------------------------------------------------------------------
function enumallfunctions()
{
if stringinstring help $@ ; then
helpwithvampiredrivers ;
else
echo " "
echo " "
echo "--> Running now function enumallfunctions()..."
echo "=============================================="
echo -e " \n\
NOTE: run the listed functions in the same order as listed below.
EXAMPLE: \"knoppix@ttyp6[knoppix]$ helpwithvampiredrivers\"
HELP: the \"--help\" parameter prints usage hints regarding a function.
EXAMPLE: \"knoppix@ttyp6[knoppix]$ fetchenumdrivers3listfromNThost --help\"
function vampiredrivers_readme()
function enumallfunctions()
function helpwithvampiredrivers()
function fetchenumdrivers3listfromNThost() # repeat, if no success at first
function createdrivernamelist()
function createprinterlistwithUNCnames() # repeat, if no success at first
function createmapofprinterstodrivers()
function splitenumdrivers3list()
function makesubdirsforW32X86driverlist()
function splitW32X86fileintoindividualdriverfiles()
function fetchallW32X86driverfiles()
function uploadallW32X86drivers()
function makesubdirsforWIN40driverlist()
function splitWIN40fileintoindividualdriverfiles()
function fetchallWIN40driverfiles()
function uploadallWIN40drivers()"
echo " "
fi
}
# this is a helperfunction (Thanks to Fabian Franz!)
function stringinstring()
{
case "$2" in *$1*)
return 0
;;
esac
return 1
}
# -----------------------------------------------------------------------------
# ----------- Create an "enumprinters 3" list --------------------- -----------
# -----------------------------------------------------------------------------
#
function helpwithfetchenumdrivers3listfromNThost()
{
echo -e " \n\
################################################################################
#
# About fetchenumdrivers3listfromNThost()....
# -------------------------------------------
#
# PRECONDITIONS: 1) This function expects write access to the current directory.
# 2) This function expects to have the '\$nthosts',
# '\$ntprinteradmin' and '\$ntadminpasswd' variables set to
# according values.
#
# WHAT IT DOES: This function connects to the '\$nthost' (using the credentials
# '\$ntprinteradmin' with '\$ntadminpasswd', retrieves a list of
# drivers (with related file names) from that host, and saves the
# list under the name of '\${nthost}/enumdrivers3list.txt' (ie. it
# also creates the '\$nthost' subdirectory in the current one). It
# further prints some more info to stdout.
#
# IF IT DOESN'T WORK: It may happen that the function doesn't work at the first
# time (there may be a connection problem). Just repeat a
# few times. It may work then. You will recognize if it
# does.
#
# HINT: The current values: 'nthost'=\"$nthost\"
# 'ntprinteradmin'=\"$ntprinteradmin\"
# 'ntadminpasswd'=<not shown here, check yourself!>
#
################################################################################"
echo " "
}
# -----------------------------------------------------------------------------
function fetchenumdrivers3listfromNThost()
{
if stringinstring help $@ ; then
helpwithfetchenumdrivers3listfromNThost;
else
echo " "
echo " "
echo "--> Running now function fetchenumdrivers3listfromNThost"
echo "========================================================"
[ -d ${nthost} ] || mkdir "${nthost}";
rpcclient -U${ntprinteradmin}%${ntadminpasswd} -c 'enumdrivers 3' ${nthost} \
| sed -e '/^.*Driver Name: \[.*\]/ y/\//_/' \
| tee \
${nthost}/enumdrivers3list.txt;
NUMBEROFDIFFERENTDRIVERNAMES=$( grep "Driver Name:" ${nthost}/enumdrivers3list.txt \
| sort -f \
| uniq \
| wc -l );
echo " ";
echo "--> Finished in running function fetchenumdrivers3listfromNThost....";
echo "===================================================================="
echo "NUMBEROFDIFFERENTDRIVERNAMES retrieved from \"${nthost}\" is $NUMBEROFDIFFERENTDRIVERNAMES".;
echo " --> If you got \"0\" you may want to try again. <---";
echo "================================================================";
echo " ";
enumdrivers3list=`cat ${nthost}/enumdrivers3list.txt`;
fi
}
# -----------------------------------------------------------------------------
# ----------- Create a list of all available drivers installed ----------------
# ------------------------on the NT print server-------------------------------
# -----------------------------------------------------------------------------
#
function helpwithcreatedrivernamelist()
{
echo -e " \n\
################################################################################
#
# About createdrivernamelist()...
# -------------------------------
#
# PRECONDITIONS: 1) This function expects to find the subdirectory '\$nthost'
# and the file '\${nthost}/enumdrivers3list.txt' to exist.
# 2) This function expects to have the '\$nthosts' variable set
# to an according value.
#
# WHAT IT DOES: This function dissects the '\${nthost}/enumdrivers3list.txt'
# and creates other textfiles from its contents:
# - '\${nthost}/drvrlst.txt'
# - '\${nthost}/completedriverlist.txt'
# and further prints some more info to stdout.
#
# HINT: The current value: 'nthost'=\"$nthost\"
#
################################################################################"
}
# -----------------------------------------------------------------------------
function createdrivernamelist()
{
if stringinstring help $@ ; then
helpwithcreatedrivernamelist;
else
echo " ";
echo " ";
echo "--> Running now function createdrivernamelist....";
echo "=================================================";
cat ${nthost}/enumdrivers3list.txt \
| grep "Driver Name:" \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print $1 }' \
| sort -f \
| uniq \
| tr / _ \
| sed -e 's/$/\"/' -e 's/^ */\"/' \
| tee \
${nthost}/drvrlst.txt;
drvrlst=$(echo ${nthost}/drvrlst.txt);
cat ${nthost}/enumdrivers3list.txt \
| grep "Driver Name:" \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print $1 }' \
| sort -f \
| uniq \
| sed -e 's/$/\"/' \
| cat -n \
| sed -e 's/^ */DRIVERNAME/' -e 's/\t/\="/' \
| tee \
${nthost}/completedriverlist.txt;
NUMBEROFDRIVERS=`cat ${nthost}/completedriverlist.txt| wc -l`;
echo " ";
echo "--> Finished in running function createdrivernamelist....";
echo "==============================================================================="
echo "NUMBEROFDRIVERS retrieve-able from \"${nthost}\" is $NUMBEROFDRIVERS".;
echo " --> If you got \"0\" you may want to run \"fetchenumdrivers3listfromNThost\""
echo " again. <---";
echo "===============================================================================";
echo " ";
driverlist=`cat ${nthost}/completedriverlist.txt`;
# alternative method suggested by Fabian Franz:
# | awk 'BEGIN {n=1} { print "DRIVERNAME"n"=\""$0"\""; n=n+1 } '
fi
}
# -----------------------------------------------------------------------------
# ----------- Create a list of all available printers -------------------------
# -----------------------------------------------------------------------------
#
function helpwithcreateprinterlistwithUNCnames()
{
echo -e " \n\
################################################################################
#
# About createprinterlistwithUNCnames()...
# ----------------------------------------
#
# PRECONDITIONS: 1) This function expects write access to the current directory.
# 2) This function expects to have the '\$nthost',
# '\$ntprinteradmin' and '\$ntadminpasswd' variables set to
# according values.
#
# WHAT IT DOES: This function connects to the '\$nthost' (using the credentials
# '\$ntprinteradmin' with '\$ntadminpasswd'), retrieves a list of
# printqueues (with associated driver names) from that host (with
# the help of the 'rpcclient ... enumprinters' utility, and saves
# it under name and path '\${nthost}/printerlistwithUNCnames.txt'
# (ie. it also creates the '\$nthost' subdirectory in the current
# one). It further prints some more info to stdout.
#
# IF IT DOESN'T WORK: It may happen that the function doesn't work at the first
# time (there may be a connection problem). Just repeat a
# few times. It may work then. You will recognize if it does.
#
# HINT: The current values: 'nthost'=\"$nthost\"
# 'ntprinteradmin'=\"$ntprinteradmin\"
# 'ntadminpasswd'=<not shown here, check yourself!>
#
################################################################################"
}
# -----------------------------------------------------------------------------
function createprinterlistwithUNCnames()
{
if stringinstring help $@ ; then
helpwithcreateprinterlistwithUNCnames ;
else
[ -d ${nthost} ] || mkdir -p ${nthost};
echo " "
echo " "
echo " "
echo "--> Running now function createprinterlistwithUNCnames()...."
echo "============================================================"
rpcclient -U"${ntprinteradmin}%${ntadminpasswd}" -c 'enumprinters' ${nthost} \
| grep "description:" \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print $1 }' \
| sort -f \
| uniq \
| tee \
${nthost}/printerlistwithUNCnames.txt;
NUMBEROFPRINTERS=`cat ${nthost}/printerlistwithUNCnames.txt| wc -l`;
echo " ";
echo "--> Finished in running function createprinterlistwithUNCnames....";
echo "=========================================================================="
echo "NUMBEROFPRINTERS retrieved from \"${nthost}\" is $NUMBEROFPRINTERS".;
echo " --> If you got \"0\" you may want to try again. <---";
echo "==========================================================================";
echo " ";
printerlistwithUNCnames=`cat ${nthost}/printerlistwithUNCnames.txt`;
fi
}
# -----------------------------------------------------------------------------
# ----------- Create a list of all printers which have (no) drivers -----------
# -----------------------------------------------------------------------------
#
function helpwithcreatemapofprinterstodrivers()
{
echo -e " \n\
################################################################################
#
# About createmapofprinterdrivers()...
# ------------------------------------
#
# PRECONDITIONS: 1) This function expects to find a subdirectory '\$nthost' and
# the file '\${nthost}/printerlistwithUNCnames.txt' to exist.
# 2) This functions expects to have the '\$nthosts' variable set
# to an according value.
#
# WHAT IT DOES: This function dissects '\${nthost}/printerlistwithUNCnames.txt'
# and creates some other textfiles from its contents:
# - '\${nthost}/allprinternames.txt'
# - '\${nthost}/alldrivernames.txt'
# - '\${nthost}/allnonrawprinters.txt'
# - '\${nthost}/allrawprinters.txt'
# - '\${nthost}/printertodrivermap.txt'
# and further prints some more info to stdout.
#
# HINT: You currently have defined: 'nthost'=\"$nthost\", which resolves above
# mentioned paths to:
# - '${nthost}/allprinternames.txt'
# - '${nthost}/alldrivernames.txt'
# - '${nthost}/allnonrawprinters.txt'
# - '${nthost}/allrawprinters.txt'
# - '${nthost}/printertodrivermap.txt'
#
################################################################################"
}
# -----------------------------------------------------------------------------
function createmapofprinterstodrivers()
{
if stringinstring help $@ ; then
helpwithcreatemapofprinterstodrivers ;
else
echo " "
echo " "
echo "--> Running now function createmapofprinterstodrivers()...."
echo "==========================================================="
echo " "
echo " "
echo "ALL PRINTERNAMES:"
echo "================="
echo " "
cat ${nthost}/printerlistwithUNCnames.txt \
| awk -F "\\" '{ print $4 }' \
| awk -F "," '{print $1}' \
| sort -f \
| uniq \
| tee \
${nthost}/allprinternames.txt;
echo " "
echo " "
echo "ALL non-RAW PRINTERS:"
echo "====================="
echo " "
cat ${nthost}/printerlistwithUNCnames.txt \
| grep -v ",," \
| awk -F "\\" '{ print $4 }' \
| awk -F "," '{print $1}' \
| sort -f \
| uniq \
| tee \
${nthost}/allnonrawprinters.txt;
echo " "
echo " "
echo "ALL RAW PRINTERS:"
echo "================"
echo " "
cat ${nthost}/printerlistwithUNCnames.txt \
| grep ",," \
| awk -F "\\" '{ print $4 }' \
| awk -F "," '{print $1}' \
| sort -f \
| uniq \
| tee \
${nthost}/allrawprinters.txt;
echo " "
echo " "
echo "THE DRIVERNAMES:"
echo "================"
cat ${nthost}/printerlistwithUNCnames.txt \
| awk -F "," '{print $2 }' \
| grep -v "^$" \
| tee \
${nthost}/alldrivernames.txt;
echo " "
echo " "
echo "THE PRINTER-TO-DRIVER-MAP-FOR-non-RAW-PRINTERS:"
echo "==============================================="
cat ${nthost}/printerlistwithUNCnames.txt \
| awk -F "\\" '{ print $4 }' \
| awk -F "," '{ print "\"" $1 "\":\"" $2 "\"" }' \
| grep -v ":\"\"$" \
| tee \
${nthost}/printertodrivermap.txt
echo -e "##########################\n# printer:driver #" >> ${nthost}/printertodrivermap.txt
fi
}
# -----------------------------------------------------------------------------
# ----------- Create a list of all printers which have drivers ----------------
# -----------------------------------------------------------------------------
#
function helpwithgetdrivernamelist()
{
echo -e " \n\
################################################################################
#
# About getdrivernamelist()...
# ----------------------------
#
# PRECONDITIONS: 1) This function expects to find the subdirectory '\$nthost\'
# otherwise it creates it...
#
# WHAT IT DOES: This function creates the '\${nthost}/printernamelist.txt'
# and also prints it to <stdout>. To do so, it must contact the
# '\$nthost' via rpcclient (which in turn needs '\$ntprinteradmin'
# '\$ntadminpasswd' to log in....).
#
# HINT: The current values: 'nthost'=\"$nthost\"
# 'ntprinteradmin'=\"$ntprinteradmin\"
# 'ntadminpasswd'=<not shown here, check yourself!>
# which resolves above mentioned path to:
# - '${nthost}/printernamelist.txt'
#
################################################################################"
}
# -----------------------------------------------------------------------------
function getdrivernamelist()
{
if stringinstring $@ ; then
helpwithgetdrivernamelist ;
else
[ -d ${nthost} ] || mkdir -p ${nthost};
echo " "
echo " "
echo "--> Running now function getdrivernamelist()...."
echo "================================================"
rpcclient -U${ntprinteradmin}%${ntadminpasswd} -c 'enumprinters' ${nthost} \
| grep "description:" \
| grep -v ",," \
| awk -F "," '{ print $2 }' \
| sort -f \
| uniq \
| tee \
${nthost}/drivernamelist.txt
fi
}
# -----------------------------------------------------------------------------
# ----------- Split the driverfile listing between the architectures ----------
# -----------------------------------------------------------------------------
#
function helpwithsplitenumdrivers3list()
{
echo -e " \n\
################################################################################
#
# About splitenumdrivers3list()...
# --------------------------------
#
# PRECONDITIONS: 1) This function expects write access to the current directory
# and its subdirs '\$nthost/*'.
# 2) This function expects to have the '\$nthost' variable set to
# the according value.
#
# WHAT IT DOES: This function dissects the '\$nthost/enumdrivers3list.txt'
# (using "sed", "cat", "awk" and "grep"). It splits the list up
# into two different files representing a complete list of drivers
# and files for each of the 2 supported architectures. It creates
# '\${nthost}/W32X86/${nthost}-enumdrivers3list-NTx86.txt'
# and '\${nthost}/WIN40/${nthost}-enumdrivers3list-WIN40.txt'.
#
# IF IT DOESN'T WORK: The function "fetchenumdrivers3listfromNThost" may not
# have been run successfully. This is a precondition for
# the current function.
#
# HINT: You currently have defined: 'nthost'=\"$nthost\", which resolves above
# mentioned paths to:
# - '${nthost}/WIN40/${nthost}-enumdrivers3list-NTx86.txt'
# - '${nthost}/W32X86/${nthost}-enumdrivers3list-NTx86.txt'
#
################################################################################"
}
# -----------------------------------------------------------------------------
function splitenumdrivers3list()
{
if stringinstring help $@ ; then
helpwithsplitenumdrivers3list ;
else
echo " "
echo " "
echo "--> Running now function splitenumdrivers3list()...."
echo "===================================================="
[ -d ${nthost}/WIN40 ] || mkdir -p ${nthost}/WIN40;
[ -d ${nthost}/W32X86 ] || mkdir -p ${nthost}/W32X86;
cat ${nthost}/enumdrivers3list.txt \
| sed -e '/^\[Windows NT x86\]/,$ d' \
| tee \
${nthost}/WIN40/${nthost}-enumdrivers3list-WIN40.txt ;
cat ${nthost}/WIN40/${nthost}-enumdrivers3list-WIN40.txt \
| grep Version \
| sort -f \
| uniq \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print $1 }' \
| tee ${nthost}/WIN40/availableversionsWIN40.txt ;
# cd ${nthost}/WIN40/ ;
# mkdir $( cat availableversionsWIN40.txt ) 2> /dev/null ;
# cd - ;
cat ${nthost}/enumdrivers3list.txt \
| sed -e '/^\[Windows NT x86\]/,$! d' \
| tee \
${nthost}/W32X86/${nthost}-enumdrivers3list-NTx86.txt ;
cat ${nthost}/W32X86/${nthost}-enumdrivers3list-NTx86.txt \
| grep Version \
| sort -f \
| uniq \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print $1 }' \
| tee ${nthost}/W32X86/availableversionsW32X86.txt ;
# cd ${nthost}/W32X86/ ;
# mkdir $( cat availableversionsW32X86.txt ) 2> /dev/null ;
# cd - ;
fi
}
# -----------------------------------------------------------------------------
# ---------- Make subdirs in ./${sambahost}/WIN40/ for each driver.... -------
# -----------------------------------------------------------------------------
#
function helpwithmakesubdirsforWIN40driverlist()
{
echo -e " \n\
################################################################################
#
# About makesubdirsforWIN40driverlist() and makesubdirsforWIN40driverlist ()...
# -----------------------------------------------------------------------------
#
# PRECONDITIONS: 1) These functions expect write access to the current directory
# 2) These functions expect to have the '\$nthost' variable set
# to the according value.
# 3) These functions expect to find the two files
# '\${nthost}/WIN40/\${nthost}-enumdrivers3list-WIN40.txt' and
# '\${nthost}/W32X86/\${nthost}-enumdrivers3list-NTx86.txt' to
# work on.
#
# WHAT IT DOES: These functions dissect the '$nthost/enumdrivers3list.txt'
# (using "sed", "cat", "awk" and "grep"). They split the input
# files up into individual files representing driver(version)s and
# create appropriate subdirectories for each driver and version
# underneath './\$nthost/<architecture>'. They use the drivernames
# (including spaces) for the directory names. ("/" -- slashes --
# in drivernames are converted to underscores).
#
# IF IT DOESN'T WORK: The function "fetchenumdrivers3listfromNThost" and
# consecutive ones may not have been run successfully. This
# is a precondition for the current function.
#
# HINT: You currently have defined: 'nthost'=\"$nthost\", which resolves above
# mentioned paths to:
# - '\${nthost}/WIN40/\${nthost}-enumdrivers3list-NTx86.txt'
# - '\${nthost}/W32X86/\${nthost}-enumdrivers3list-NTx86.txt'
#
################################################################################
# ............PRESS \"q\" TO QUIT............" \
|less
}
# -----------------------------------------------------------------------------
function makesubdirsforWIN40driverlist()
{
if stringinstring help $@ ; then
helpwithmakesubdirsforWIN40driverlist ;
else
cat ${nthost}/WIN40/${nthost}-enumdrivers3list-WIN40.txt \
| grep "Driver Name:" \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print $1 }' \
| sort -f \
| uniq \
| tr / _ \
| sed -e 's/$/\"/' \
| sed -e 's/^/mkdir -p '"\"${nthost}"'\/WIN40\//' \
| tee \
${nthost}/makesubdirsforWIN40driverlist.txt;
sh -x ${nthost}/makesubdirsforWIN40driverlist.txt;
# rm ${nthost}/makesubdirsforWIN40driverlist.txt;
fi
}
# -----------------------------------------------------------------------------
# ---------- Make subdirs in ./${sambahost}/W32X86/ for each driver.... -------
# -----------------------------------------------------------------------------
#
function makesubdirsforW32X86driverlist()
{
if stringinstring help $@ ; then
helpwithvampiredrivers ;
else
cat ${nthost}/W32X86/${nthost}-enumdrivers3list-NTx86.txt \
| grep "Driver Name:" \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print $1 }' \
| sort -f \
| uniq \
| tr / _ \
| sed -e 's/$/\"/' \
| sed -e 's/^ */mkdir '\""${nthost}"'\/W32X86\//' \
| tee \
${nthost}/makesubdirsforW32X86driverlist.txt;
sh -x ${nthost}/makesubdirsforW32X86driverlist.txt;
# rm ${nthost}/makesubdirsforW32X86driverlist.txt;
fi
}
# -----------------------------------------------------------------------------
# ----------- Split the WIN40 driverfile listing of each architecture ---------
# ------------------------ into individual drivers ----------------------------
# -----------------------------------------------------------------------------
#
function helpwithmakesubdirsforWIN40driverlist()
{
echo -e " \n\
################################################################################
#
# About splitWIN40fileintoindividualdriverfiles() and
# splitW32X86fileintoindividualdriverfiles()...
# ---------------------------------------------------
#
# PRECONDITIONS: 1) These functions expect write access to the current directory
# and its subdirs '\$nthost/*/'.
# 2) These functions expect to have the '\$nthost' variable set
# to the according value.
# 3) These functions expect to find the two files
# '\${nthost}/WIN40/\${nthost}-enumdrivers3list-WIN40.txt' and
# '\${nthost}/W32X86/\${nthost}-enumdrivers3list-NTx86.txt' to
# work on.
#
# WHAT IT DOES: 1) These functions create a directory for each printer driver.
# The directory name is identical to the driver name.
# 2) For each supported driver version (\"0\", \"2\" and \"3\") it
# creates a subdirectory as required underneath
# './\$nthost/<architecture>'.
# 3) The directories use the drivernames (including spaces) for
# their names. ("/" - slashes - in drivernames are converted to
# underscores).
# 4) In each subdirectory they dissect the original
# '\$nthost/enumdrivers3list.txt' (using "sed", "cat", "awk"
# and "grep") and store that part describing the related driver
# (under the name \"driverfilesversion.txt\".
# 5) For each driver the files \"Drivername\", \"DriverPath\",
# \"Drivername\", \"Configfile\", \"Helpfile\", \"AllFiles\" and
# \"Dependentfilelist\" are stored in the according directory
# which hold contend that is used by other (downstream)
# functions.
# 6) It creates a file named \"AllFilesIAskFor\" which holds the
# case sensitive names of files it wanted to download. It also
# creates a file named \"AllFilesIGot\" which holds the case
# sensitive spelling of the downloaded files. (Due to
# Microsoft's ingenious file naming tradition, you may have
# asked for a \"PS5UI.DLL\" but gotten a \"ps5ui.dll\".
# 7) The 2 files from 6) will be later compared with the help of
# the \"sdiff\" utility to decide how to re-name the files so
# that the subsequent driver upload command's spelling
# convention is met.
#
# IF IT DOESN'T WORK: The function \"fetchenumdrivers3listfromNThost\" and
# consecutive ones may not have been run successfully. This
# is a precondition for the current function.
#
# HINT: You currently have defined: 'nthost'=\"$nthost\".
#
################################################################################
# ............PRESS \"q\" TO QUIT............" \
|less
}
# -----------------------------------------------------------------------------
function splitWIN40fileintoindividualdriverfiles()
{
if stringinstring help $@ ; then
helpwithmakesubdirsforWIN40driverlist ;
else
echo " "
echo " "
echo "--> Running now function splitWIN40fileintoindividualdriverfiles()..."
echo "====================================================================="
for i in ${nthost}/WIN40/*/; do
CWD1="$( pwd )" ;
cd "${i}" ;
echo " "
echo " "
echo " ###########################################################################################"
echo " "
echo " Next driver is \"$( basename "$( pwd)" )\""
echo " "
echo " ###########################################################################################"
##### echo "yes" | cp -f ../../../${nthost}/WIN40/${nthost}-enumdrivers3list-WIN40.txt . 2> /dev/null ;
ln -s -f ../${nthost}-enumdrivers3list-WIN40.txt ${nthost}-enumdrivers3list-WIN40.lnk ;
tac ${nthost}-enumdrivers3list-WIN40.lnk \
| sed -e '/'"$(basename "$(echo "$PWD")")"'/,/Version/ p' -n \
| grep Version \
| uniq \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print "mkdir \"" $1 "\"" }' \
| tee mkversiondir.txt ;
sh mkversiondir.txt 2> /dev/null ;
cat ${nthost}-enumdrivers3list-WIN40.lnk \
| sed -e '/\['"$(basename "$(echo "$PWD")")"'\]/,/Monitor/ w alldriverfiles.txt' -n ;
for i in */; do
CWD2="$( pwd )" ;
cd "${i}";
echo "yes" | cp ../alldriverfiles.txt . 2> /dev/null ;
cat alldriverfiles.txt \
| egrep '(\\'"$(basename "$( pwd )")"'\\|Driver Name)' \
| tee driverfilesversion.txt ;
Drivername=$( grep "Driver Name:" driverfilesversion.txt \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print $1 }' \
| sort -f \
| uniq \
| tee Drivername ) ;
DriverPath=$( grep "Driver Path:" driverfilesversion.txt \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print $1 }' \
| awk -F "WIN40" '{ print $2 }' \
| awk -F "\\" '{ print $3 }' \
| sort -f \
| uniq ) ;
echo "${DriverPath}" \
| tee DriverPath ;
Datafile=$( grep "Datafile:" driverfilesversion.txt \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print $1 }' \
| awk -F "WIN40" '{ print $2 }' \
| awk -F "\\" '{ print $3 }' \
| sort -f \
| uniq ) ;
echo "${Datafile}" \
| tee Datafile ;
Configfile=$( grep "Configfile:" driverfilesversion.txt \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print $1 }' \
| awk -F "WIN40" '{ print $2 }' \
| awk -F "\\" '{ print $3 }' \
| sort -f \
| uniq ) ;
echo "${Configfile}" \
| tee Configfile ;
Helpfile=$( grep "Helpfile:" driverfilesversion.txt \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print $1 }' \
| awk -F "WIN40" '{ print $2 }' \
| awk -F "\\" '{ print $3 }' \
| sort -f \
| uniq ) ;
echo "${Helpfile}" \
| tee Helpfile ;
Dependentfilelist=$( grep "Dependentfiles:" driverfilesversion.txt \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print $1 }' \
| awk -F "WIN40" '{ print $2 }' \
| awk -F "\\" '{ print $3 }' \
| sort -f \
| uniq ) ;
Dependentfiles=$( echo $Dependentfilelist \
| sed -e 's/ /,/g ' ) ;
echo "${Dependentfiles}" \
| tee Dependentfiles
AllFiles=$( echo ${Dependentfilelist}; echo ${Helpfile}; echo ${Configfile}; echo ${Datafile}; echo ${DriverPath} );
echo "${AllFiles}" \
| sort -f \
| uniq \
| tee AllFiles ;
for i in $( cat AllFiles ); do echo ${i}; done \
| sort -f \
| uniq \
| tee AllFilesIAskFor ;
cd "${CWD2}" 1> /dev/null ;
done
# rpcclient -U"${smbprinteradmin}%${smbadminpasswd}" \
# -c "adddriver \"${Architecture}\" \"${DriverName}:${DriverPath}:${Datafile}:${Configfile}:${Helpfile}:NULL:RAW:${Dependentfiles}\" ${Version}" \ ${smbhost}
# rpcclient -U"${smbprinteradmin}%${smbadminpasswd}" \
# -c "setdriver \"${printername}\" \"${DriverName}\"" \
# ${smbhost}
#
# rpcclient -U"${smbprinteradmin}%${smbadminpasswd}" \
# -c "setprinter \"${printername}\" \"Driver was installed and set via MS-RPC (utilized by Kurt Pfeifle\'s set of \"Vampire Printerdrivers\" scripts from Linux)\"" \
# ${smbhost}
cd "${CWD1}" 1> /dev/null ;
done;
fi
}
# -----------------------------------------------------------------------------
# ---------- Split the W32X86 driverfile listing of each architecture ---------
# ------------------------ into individual drivers ----------------------------
# -----------------------------------------------------------------------------
#
function splitW32X86fileintoindividualdriverfiles()
{
if stringinstring help $@ ; then
helpwithmakesubdirsforWIN40driverlist ;
else
echo " "
echo " "
echo "--> Running now function splitW32X86fileintoindividualdriverfiles()..."
echo "======================================================================"
for i in ${nthost}/W32X86/*/; do
CWD1="$( pwd )" ;
cd "${i}" ;
echo " "
echo " "
echo " ###########################################################################################"
echo " "
echo " Next driver is \"$( basename "$( pwd)" )\""
echo " "
echo " ###########################################################################################"
###### echo "yes" | cp -f ../../../${nthost}/W32X86/${nthost}-enumdrivers3list-NTx86.txt . 2> /dev/null ;
ln -s -f ../${nthost}-enumdrivers3list-NTx86.txt ${nthost}-enumdrivers3list-NTx86.lnk ;
tac ${nthost}-enumdrivers3list-NTx86.lnk \
| sed -e '/'"$(basename "$(echo "$PWD")")"'/,/Version/ p' -n \
| grep Version \
| uniq \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print "mkdir \"" $1 "\"" }' \
| tee mkversiondir.txt ;
sh mkversiondir.txt 2> /dev/null ;
cat ${nthost}-enumdrivers3list-NTx86.lnk \
| sed -e '/\['"$(basename "$(echo "$PWD")")"'\]/,/Monitor/ w alldriverfiles.txt' -n ;
for i in */; do
CWD2="$( pwd )" ;
cd "${i}";
echo "yes" | cp ../alldriverfiles.txt . 2> /dev/null ;
cat alldriverfiles.txt \
| egrep '(\\'"$(basename "$( pwd )")"'\\|Driver Name)' \
| tee driverfilesversion.txt ;
Drivername=$( grep "Driver Name:" driverfilesversion.txt \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print $1 }' \
| sort -f \
| uniq \
| tee Drivername ) ;
# echo "${Drivername}" \
# | tee Drivername ;
DriverPath=$( grep "Driver Path:" driverfilesversion.txt \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print $1 }' \
| awk -F "W32X86" '{ print $2 }' \
| awk -F "\\" '{ print $3 }' \
| sort -f \
| uniq ) ;
echo "${DriverPath}" \
| tee DriverPath ;
Datafile=$( grep "Datafile:" driverfilesversion.txt \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print $1 }' \
| awk -F "W32X86" '{ print $2 }' \
| awk -F "\\" '{ print $3 }' \
| sort -f \
| uniq ) ;
echo "${Datafile}" \
| tee Datafile ;
Configfile=$( grep "Configfile:" driverfilesversion.txt \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print $1 }' \
| awk -F "W32X86" '{ print $2 }' \
| awk -F "\\" '{ print $3 }' \
| sort -f \
| uniq ) ;
echo "${Configfile}" \
| tee Configfile ;
Helpfile=$( grep "Helpfile:" driverfilesversion.txt \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print $1 }' \
| awk -F "W32X86" '{ print $2 }' \
| awk -F "\\" '{ print $3 }' \
| sort -f \
| uniq ) ;
echo "${Helpfile}" \
| tee Helpfile ;
Dependentfilelist=$( grep "Dependentfiles:" driverfilesversion.txt \
| awk -F "[" '{ print $2 }' \
| awk -F "]" '{ print $1 }' \
| awk -F "W32X86" '{ print $2 }' \
| awk -F "\\" '{ print $3 }' \
| sort -f \
| uniq ) ;
Dependentfiles=$( echo $Dependentfilelist \
| sed -e 's/ /,/g ' ) ;
echo "${Dependentfiles}" \
| tee Dependentfiles
AllFiles=$( echo ${Dependentfilelist}; echo ${Helpfile}; echo ${Configfile}; echo ${Datafile}; echo ${DriverPath} ) ;
echo "${AllFiles}" \
| sort -f \
| uniq \
| tee AllFiles ;
for i in $( cat AllFiles ); do echo ${i}; done \
| sort -f \
| uniq \
| tee AllFilesIAskFor ;
cd "${CWD2}" 1> /dev/null ;
done
# rpcclient -U"${smbprinteradmin}%${smbadminpasswd}" \
# -c "adddriver \"${Architecture}\" \"${DriverName}:${DriverPath}:${Datafile}:${Configfile}:${Helpfile}:NULL:RAW:${Dependentfiles}\" ${Version}" \ ${smbhost}
# rpcclient -U"${smbprinteradmin}%${smbadminpasswd}" \
# -c "setdriver \"${printername}\" \"${DriverName}\"" \
# ${smbhost}
#
# rpcclient -U"${smbprinteradmin}%${smbadminpasswd}" \
# -c "setprinter \"${printername}\" \"Driver was installed and set via MS-RPC (utilized by Kurt Pfeifle\'s set of \"Vampire Printerdrivers\" scripts from Linux)\"" \
# ${smbhost}
cd "${CWD1}" 1> /dev/null ;
done;
fi
}
# -----------------------------------------------------------------------------
# ------------------ First download the driverfiles........... ----------------
# -----------------------------------------------------------------------------
#
function helpwithfetchallW32X86driverfiles()
{
echo -e " \n\
################################################################################
#
# About fetchallW32X86driverfiles()...
# ------------------------------------
#
# PRECONDITIONS: 1) This function expects to have the \'\$nthost\' variable set
# to the according value.
# 2) This function expects to find files \"AllFiles\",
# \"AllFilesIAskFor\", and \"AllFilesIGot\" in the directories
# \'\${nthost}/<architecture>/<drivername>/<version>/\'.
#
# WHAT IT DOES: These functions use \"smbclient\" to connect to the NT print
# server \"\$nthost\" and download the printer driver files from
# there. To achieve that in an orderly fashion, the previously
# created subdirectories (named like the drivers to fetch) are
# visited in turn and the related files are downloaded for each
# driver/directory.
#
# IF IT DOESN'T WORK: The function \"fetchenumdrivers3listfromNThost\" and
# consecutive ones may not have been run successfully. This
# is a precondition for the current function.
#
# HINT: The current values: 'nthost'=\"$nthost\"
# 'ntprinteradmin'=\"$ntprinteradmin\"
# 'ntadminpasswd'=<not shown here, check yourself!>
#
################################################################################"
}
# -----------------------------------------------------------------------------
function fetchallW32X86driverfiles()
{
if stringinstring help $@ ; then
helpwithfetchallW32X86driverfiles ;
else
echo " "
echo " "
echo "--> Running now function fetchallW32X86driverfiles()...."
echo "========================================================"
CURRENTWD=${PWD} ;
for i in ${nthost}/W32X86/*/*/ ; do \
cd "${i}";
driverversion="$(basename "$(echo "$PWD")")" ;
echo "$(basename "$(echo "$PWD")")" > driverversion ;
AllFiles=$( cat AllFiles ) ;
[ -d TheFiles ] || mkdir TheFiles;
cd TheFiles;
echo " "
echo "===================================================="
echo "Downloading files now to ${PWD}....";
echo "===================================================="
echo " "
# Fetch the Driver files from the Windoze box (printserver)
smbclient -U"${ntprinteradmin}%${ntadminpasswd}" -d 2 \
//${nthost}/print\$ -c \
"cd W32X86\\${driverversion};prompt;mget ${AllFiles}"
ls -1 \
| sort -f \
| uniq \
| tee ../AllFilesIGot ;
cd ${CURRENTWD} ;
done ;
fi
}
# -----------------------------------------------------------------------------
# -------------- Now upload the driverfiles and activate them! ----------------
# Upload files into root "Architecture" directory of Samba'a [print$] share...
# -----------------------------------------------------------------------------
#
function helpwithuploadallW32X86drivers()
{
echo -e " \n\
################################################################################
#
# About uploadallW32X86drivers()...
# ---------------------------------
#
# PRECONDITIONS: 1) This function expects to have the '\$nthost',
# '\$ntprinteradmin' and '\$ntadminpasswd' variables set to
# according values.
# 2) This function expects to find the files \"AllFiles\",
# \"AllFilesIGot\" and \"AllFilesIAskFor\" in the
# \"\${nthost}/W32X86<drivername>/<driverversion>/TheFiles\"
# subdirectory.
#
# WHAT IT DOES: This function uses "smbclient" to connect to the new Samba print
# server "\$nthost" and upload the printer driver files into the
# \"[print\$]\" share there. To achieve that in orderly fashion,
# the previously created subdirectories (named like the drivers
# fetched previously from \$smbhost) are visited in turn and the
# related files are uploaded for each driver/directory. For this
# to really succeed, the files \"AllFilesIGot\" and \"AllFilesIAskFor\"
# are compared with the help of the \"sdiff\" utility to decide
# how to re-name the mis-matching filenams, so that the used
# driver upload command's spelling convention is met....
#
# IF IT DOESN'T WORK: The function "fetchenumdrivers3listfromNThost" and
# consecutive ones may not have been run successfully. This
# is a precondition for the current function.
#
# HINT: The current values: 'nthost'=\"$nthost\"
# 'ntprinteradmin'=\"$ntprinteradmin\"
# 'ntadminpasswd'=<not shown here, check yourself!>
#
################################################################################
# ............PRESS \"q\" TO QUIT............" \
|less
}
# -----------------------------------------------------------------------------
function uploadallW32X86drivers()
{
if stringinstring help $@ ; then
helpwithuploadallW32X86drivers ;
else
echo " "
echo " "
echo "--> Running now function uploadallW32X86drivers()...."
echo "====================================================="
for i in ${nthost}/W32X86/*/*/; do \
CURRENTWD=${PWD} ;
cd "${i}" ;
# we are now in [..]/W32X86/[drvrname]/[2|3]/
driverversion="$(basename "$(echo "$PWD")")" ;
echo "$(basename "$(echo "$PWD")")" > driverversion ;
cd TheFiles ;
# we are now in [..]/W32X86/[drvrname]/[2|3]/TheFiles
echo " "
echo "===================================================="
echo "Uploading driverfiles now from ${PWD}....";
echo "===================================================="
echo " "
set -x ;
smbclient -U"${smbprinteradmin}%${smbadminpasswd}" -d 2 \
//${smbhost}/print\$ \
-c "mkdir W32X86;cd W32X86;prompt;mput $( cat ../AllFilesIGot )";
cd .. ;
# we are now in [..]/W32X86/[drvrname]/[2|3]/
# Now tell Samba that those files are *printerdriver* files....
# The "adddriver" command will move them to the "0" subdir and create or
# update the associated *.tdb files (faking the MS Windows Registry on Samba)
Drivername="$( cat Drivername )"
set -x ;
[ x"$( cat Dependentfiles)" == x"" ] && echo NULL > Dependentfiles;
sdiff -s AllFilesIGot AllFilesIAskFor \
| tee sdiff-of-Requested-and-Received.txt ;
[ -s sdiff-of-Requested-and-Received.txt ] \
|| rm -f sdiff-of-Requested-and-Received.txt \
&& cat sdiff-of-Requested-and-Received.txt > ../sdiff-of-Requested-and-Received.txt ;
cat sdiff-of-Requested-and-Received.txt \
| sed -e 's/^/mv /' \
| sed -e 's/ *|/ /' \
| tee rename-Received-to-Requested-case.txt ;
sh -x rename-Received-to-Requested-case.txt ;
mv rename-Received-to-Requested-case.txt rename-Received-to-Requested-case.done ;
echo " ################ B E G I N DEBUGGING STATEMENT ############"
echo "rpcclient -U\"${smbprinteradmin}%${smbadminpasswd}\" -d 2 \
-c \'adddriver \"Windows NT x86\" \"$( cat Drivername ):$( cat DriverPath ):$( cat Datafile ):$( cat Configfile ):$( cat Helpfile ):NULL:RAW:$( cat Dependentfiles )\" $( cat driverversion )" \
${smbhost} \' ;
echo " ################ E N D DEBUGGING STATEMENT ################"
rpcclient -U"${smbprinteradmin}%${smbadminpasswd}" -d 2 \
-c "adddriver \"Windows NT x86\" \"$( cat Drivername ):$( cat DriverPath ):$( cat Datafile ):$( cat Configfile ):$( cat Helpfile ):NULL:RAW:$( cat Dependentfiles )\" $( cat driverversion )" \
${smbhost} ;
set +x ;
cd ${CURRENTWD} ;
# we are now back to where we started
done;
set +x ;
fi
}
# Now tell Samba which printqueue this driver is associated with....
# The "setdriver" command will do just that and create or
# update the associated *.tdb files (faking the MS Windows Registry on Samba)
# rpcclient -U"${smbprinteradmin}%${smbadminpasswd}" \
# -c "setdriver \"${printername}\" \"${DriverName}\"" \
# ${smbhost}
# -- NOT YET IMPLEMENTED IN THIS SCRIPT ---
#
# Now set a nice printer comment and let the world know what we've done
# (or not.... ;-)
# rpcclient -U"${smbprinteradmin}%${smbadminpasswd}" \
# -c "setprinter \"${printername}\" \"Driver was installed and set via MS-RPC (rpcclient commandline from Linux)\"" \
# ${smbhost}
# -- NOT YET IMPLEMENTED IN THIS SCRIPT ---
#
# -----------------------------------------------------------------------------
# ------------------ First download the driverfiles........... ----------------
# -----------------------------------------------------------------------------
#
function helpwithfetchallWIN40driverfiles()
{
echo -e " \n\
################################################################################
#
# About fetchallWIN40driverfiles()...
# -----------------------------------
#
# PRECONDITIONS: 1) This function expects to have the \$nthost variable set to
# the according value.
# 2) This function expects to find the \"AllFiles\" file in
# \"\${nthost}/WIN40<drivername>/<driverversion>/TheFiles\".
#
# WHAT IT DOES: These functions use "smbclient" to connect to the NT print server
# "\$nthost" and download the printer driver files from there. To
# achieve that in an orderly fashion, the previously created
# subdirectories (named like the drivers to fetch) are visited in
# turn and the related files are downloaded for each
# driver/directory.
#
# IF IT DOESN'T WORK: The function "fetchenumdrivers3listfromNThost" and
# consecutive ones may not have been run successfully. This
# is a precondition for the current function.
#
# HINT: The current values: 'nthost'=\"$nthost\"
# 'ntprinteradmin'=\"$ntprinteradmin\"
# 'ntadminpasswd'=<not shown here, check yourself!>
#
################################################################################
# ............PRESS \"q\" TO QUIT............" \
|less
}
# -----------------------------------------------------------------------------
function fetchallWIN40driverfiles()
{
if stringinstring help $@ ; then
helpwithfetchallWIN40driverfiles ;
else
echo " "
echo " "
echo "--> Running now function fetchallWIN40driverfiles()...."
echo "======================================================="
CURRENTWD=${PWD} ;
for i in ${nthost}/WIN40/*/*/; do \
cd "${i}";
driverversion="$(basename "$(echo "$PWD")")" ;
echo "$(basename "$(echo "$PWD")")" > driverversion ;
AllFiles=$( cat AllFiles ) ;
[ -d TheFiles ] || mkdir TheFiles;
cd TheFiles;
echo " "
echo "===================================================="
echo "Downloading files now to ${PWD}....";
echo "===================================================="
echo " "
# Fetch the Driver files from the Windoze box (printserver)
smbclient -U"${ntprinteradmin}%${ntadminpasswd}" -d 2 \
//${nthost}/print\$ -c \
"cd WIN40\\${driverversion};prompt;mget ${AllFiles}" ;
ls -1 \
| sort -f \
| uniq \
| tee ../AllFilesIGot ;
cd ${CURRENTWD} ;
done ;
fi
}
# -----------------------------------------------------------------------------
# -------------- Now upload the driverfiles and activate them! ----------------
# Upload files into root "Architecture" directory of Samba'a [print$] share...
# -----------------------------------------------------------------------------
#
function helpwithuploadallWIN40drivers()
{
echo -e " \n\
################################################################################
#
# About uploadallWIN40drivers()...
# --------------------------------
#
# PRECONDITIONS: 1) This function expects to have '\$smbhost', '\$smbprinteradmin'
# and '\$smbadminpasswd' variables set to according values.
# 2) This function expects to find \"AllFiles\", \"AllFilesIGot\"
# and \"AllFilesIAskFor\" in the subdirectory
# \"\${nthost}/WINI40/<drivername>/<driverversion>/TheFiles\".
#
# WHAT IT DOES: These function uses \"smbclient\" to connect to the new Samba
# print server "\$nthost" and upload the printer driver files into
# the \"[print\$]\" share there.
# To achieve that in an orderly fashion, the previously created
# subdirectories (named like the drivers fetched previously from
# \$smbhost) are visited in turn and the related files are
# uploaded for each driver/directory.
# For this to really succeed, \"AllFilesIGot\" and \"AllFilesIAskFor\"
# are compared with the help of the \"sdiff\" utility to decide
# how to re-name the mis-matching filenams, so that the used
# driver upload command's spelling convention is met....
#
# IF IT DOESN'T WORK: The function \"fetchenumdrivers3listfromNThost\" and
# consecutive ones may not have been run successfully. This
# is a precondition for the current function.
#
# HINT: The current values: 'nthost'=\"$nthost\"
# 'ntprinteradmin'=\"$ntprinteradmin\"
# 'ntadminpasswd'=<not shown here, check yourself!>
#
################################################################################
# ............PRESS \"q\" TO QUIT............" \
|less
}
function uploadallWIN40drivers()
{
if stringinstring help $@ ; then
helpwithuploadallWIN40drivers ;
else
echo " "
echo " "
echo "--> Running now function uploadallWIN40drivers()...."
echo "===================================================="
for i in ${nthost}/WIN40/*/*/; do \
CURRENTWD=${PWD} ;
cd "${i}" ;
# we are now in [..]/WIN40/[drvrname]/[0]/
driverversion="$(basename "$(echo "$PWD")")" ;
echo "$(basename "$(echo "$PWD")")" > driverversion ;
cd TheFiles ;
# we are now in [..]/WIN40/[drvrname]/[0]/TheFiles
echo " "
echo "===================================================="
echo "Uploading driverfiles now from ${PWD}....";
echo "===================================================="
echo " "
set -x ;
smbclient -U"${smbprinteradmin}%${smbadminpasswd}" -d 2 \
//${smbhost}/print\$ \
-c "mkdir WIN40;cd WIN40;prompt;mput $( cat ../AllFilesIGot )";
cd .. ;
# we are now in [..]/WIN40/[drvrname]/[0]/
# Now tell Samba that those files are *printerdriver* files....
# The "adddriver" command will move them to the "0" subdir and create or
# update the associated *.tdb files (faking the MS Windows Registry on Samba)
Drivername="$( cat Drivername )"
set -x ;
[ x"$( cat Dependentfiles)" == x"" ] && echo NULL > Dependentfiles;
sdiff -s AllFilesIGot AllFilesIAskFor \
| tee sdiff-of-Requested-and-Received.txt ;
[ -s sdiff-of-Requested-and-Received.txt ] \
|| rm -f sdiff-of-Requested-and-Received.txt \
&& cat sdiff-of-Requested-and-Received.txt > ../sdiff-of-Requested-and-Received.txt ;
cat sdiff-of-Requested-and-Received.txt \
| sed -e 's/^/mv /' \
| sed -e 's/ *|/ /' \
| tee rename-Received-to-Requested-case.txt ;
sh -x rename-Received-to-Requested-case.txt ;
mv rename-Received-to-Requested-case.txt rename-Received-to-Requested-case.done ;
echo " ################ DEBUGGING STATEMENT "
echo "rpcclient -U\"${smbprinteradmin}%${smbadminpasswd}\" -d 2 \
-c \'adddriver \"Windows NT x86\" \"$( cat Drivername ):$( cat DriverPath ):$( cat Datafile ):$( cat Configfile ):$( cat Helpfile ):NULL:RAW:$( cat Dependentfiles )\" $( cat driverversion )" \
${smbhost}\' ;
echo " ################ DEBUGGING STATEMENT "
rpcclient -U"${smbprinteradmin}%${smbadminpasswd}" -d 2 \
-c "adddriver \"Windows 4.0\" \"$( cat Drivername ):$( cat DriverPath ):$( cat Datafile ):$( cat Configfile ):$( cat Helpfile ):NULL:RAW:$( cat Dependentfiles )\" $( cat driverversion )" \
${smbhost} ;
set +x ;
cd ${CURRENTWD} ;
# we are now back to where we started
done;
fi
}
# Now tell Samba which printqueue this driver is associated with....
# The "setdriver" command will do just that and create or
# update the associated *.tdb files (faking the MS Windows Registry on Samba)
# rpcclient -U"${smbprinteradmin}%${smbadminpasswd}" \
# -c "setdriver \"${printername}\" \"${DriverName}\"" \
# ${smbhost}
# -- NOT YET IMPLEMENTED IN THIS SCRIPT ---
#
# Now set a nice printer comment and let the world know what we've done
# (or not.... ;-)
# rpcclient -U"${smbprinteradmin}%${smbadminpasswd}" \
# -c "setprinter \"${printername}\" \"Driver was installed and set via MS-RPC (rpcclient commandline from Linux)\"" \
# ${smbhost}
# -- NOT YET IMPLEMENTED IN THIS SCRIPT ---
#
#source ${0} ;
enumallfunctions;
|