Jump to content

Read INI File and List in GUICtrlCreateList as Checkbox Items


Elephant007
 Share

Recommended Posts

 I'm on the last few parts of finishing a program to help my school district install printers, I have all the backend stuff completed I just need help with the following

How can I read an INI file and list the output in the GUICtrlCreateList with checkboxes that will allow you to select multiple printers and install all of them

I would also like to be able to type in one or multiple computer names. With the computer names, I would like to be able to use multiple lines but limit each line to 14 characters. Maybe even auto return to the next line on the 14th character

The last thing would be to $GUI_ENABLE the GO button when at least one printer is selected. 

I appreciate your help in advance and hope I provided good information

 

Example of the checkboxes with the printer name (from a different programming language) is also attached

#include <ButtonConstants.au3>
#include <ComboConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <GUIListBox.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>

#region ### Start Read INI to Array ###
Global $SINI = "Network_Print_Manager_Printer_List.ini"
If @error Then MsgBox(4096, "", "Error occurred, probably no INI file.")

#region === Start Campus Type ===
Local $ACAMPUS = IniReadSection($SINI, "CAMPUS")
Local $SCAMPUS = ""
For $I = 1 To $ACAMPUS[0][0]
    $SCAMPUS &= "|" & $ACAMPUS[$I][0]
Next
Local $AOTHERS = IniReadSection($SINI, "Others")
Local $SOTHERS = ""
For $I = 1 To $AOTHERS[0][0]
    $SOTHERS &= "|" & $AOTHERS[$I][0]
Next
Local $AELEMENTARY = IniReadSection($SINI, "Elementary")
Local $SELEMENTARY = ""
For $I = 1 To $AELEMENTARY[0][0]
    $SELEMENTARY &= "|" & $AELEMENTARY[$I][0]
Next
Local $AMIDDLE = IniReadSection($SINI, "Middle")
Local $SMIDDLE = ""
For $I = 1 To $AMIDDLE[0][0]
    $SMIDDLE &= "|" & $AMIDDLE[$I][0]
Next
Local $AHIGH = IniReadSection($SINI, "High")
Local $SHIGH = ""
For $I = 1 To $AHIGH[0][0]
    $SHIGH &= "|" & $AHIGH[$I][0]
Next
Local $ANONINSTRUCTIONAL = IniReadSection($SINI, "Instructional Support")
Local $SNONINSTRUCTIONAL = ""
For $I = 1 To $ANONINSTRUCTIONAL[0][0]
    $SNONINSTRUCTIONAL &= "|" & $ANONINSTRUCTIONAL[$I][0]
Next
#endregion === Start Campus Type ===
#region === Start High Schools ===
Local $AABILENEHIGH = IniReadSection($SINI, "001")
Local $SABILENEHIGH = ""
For $I = 1 To $AABILENEHIGH[0][0]
    $SABILENEHIGH &= "|" & $AABILENEHIGH[$I][0]
Next
Local $ACOOPERHIGH = IniReadSection($SINI, "002")
Local $SCOOPERHIGH = ""
For $I = 1 To $ACOOPERHIGH[0][0]
    $SCOOPERHIGH &= "|" & $ACOOPERHIGH[$I][0]
Next
Local $AWOODSONHIGH = IniReadSection($SINI, "003")
Local $SWOODSONHIGH = ""
For $I = 1 To $AWOODSONHIGH[0][0]
    $SWOODSONHIGH &= "|" & $AWOODSONHIGH[$I][0]
Next
Local $AHOLLANDHIGH = IniReadSection($SINI, "009")
Local $SHOLLANDHIGH = ""
For $I = 1 To $AHOLLANDHIGH[0][0]
    $SHOLLANDHIGH &= "|" & $AHOLLANDHIGH[$I][0]
Next
Local $AATEMSHIGH = IniReadSection($SINI, "010")
Local $SATEMSHIGH = ""
For $I = 1 To $AATEMSHIGH[0][0]
    $SATEMSHIGH &= "|" & $AATEMSHIGH[$I][0]
Next
#endregion === Start High Schools ===
#region === Start Middle Schools ===
Local $AMADISON = IniReadSection($SINI, "044")
Local $SMADISON = ""
For $I = 1 To $AMADISON[0][0]
    $SMADISON &= "|" & $AMADISON[$I][0]
Next
Local $AMANN = IniReadSection($SINI, "045")
Local $SMANN = ""
For $I = 1 To $AMANN[0][0]
    $SMANN &= "|" & $AMANN[$I][0]
Next
Local $ACLACK = IniReadSection($SINI, "047")
Local $SCLACK = ""
For $I = 1 To $ACLACK[0][0]
    $SCLACK &= "|" & $ACLACK[$I][0]
Next
Local $ACRAIG = IniReadSection($SINI, "048")
Local $SCRAIG = ""
For $I = 1 To $ACRAIG[0][0]
    $SCRAIG &= "|" & $ACRAIG[$I][0]
Next
#endregion === Start Middle Schools ===
#region === Start Elementary Schools ===
Local $AMCMURRY = IniReadSection($SINI, "080")
Local $SMCMURRY = ""
For $I = 1 To $AMCMURRY[0][0]
    $SMCMURRY &= "|" & $AMCMURRY[$I][0]
Next
Local $AAUSTIN = IniReadSection($SINI, "102")
Local $SAUSTIN = ""
For $I = 1 To $AAUSTIN[0][0]
    $SAUSTIN &= "|" & $AAUSTIN[$I][0]
Next
Local $ABONHAM = IniReadSection($SINI, "103")
Local $SBONHAM = ""
For $I = 1 To $ABONHAM[0][0]
    $SBONHAM &= "|" & $ABONHAM[$I][0]
Next
Local $ABOWIE = IniReadSection($SINI, "104")
Local $SBOWIE = ""
For $I = 1 To $ABOWIE[0][0]
    $SBOWIE &= "|" & $ABOWIE[$I][0]
Next
Local $ADYESS = IniReadSection($SINI, "108")
Local $SDYESS = ""
For $I = 1 To $ADYESS[0][0]
    $SDYESS &= "|" & $ADYESS[$I][0]
Next
Local $AJACKSON = IniReadSection($SINI, "112")
Local $SJACKSON = ""
For $I = 1 To $AJACKSON[0][0]
    $SJACKSON &= "|" & $AJACKSON[$I][0]
Next
Local $AJOHNSTON = IniReadSection($SINI, "112")
Local $SJOHNSTON = ""
For $I = 1 To $AJOHNSTON[0][0]
    $SJOHNSTON &= "|" & $AJOHNSTON[$I][0]
Next
Local $ALEE = IniReadSection($SINI, "116")
Local $SLEE = ""
For $I = 1 To $ALEE[0][0]
    $SLEE &= "|" & $ALEE[$I][0]
Next
Local $ALONG = IniReadSection($SINI, "118")
Local $SLONG = ""
For $I = 1 To $ALONG[0][0]
    $SLONG &= "|" & $ALONG[$I][0]
Next
Local $AREAGAN = IniReadSection($SINI, "120")
Local $SREAGAN = ""
For $I = 1 To $AREAGAN[0][0]
    $SREAGAN &= "|" & $AREAGAN[$I][0]
Next
Local $ATAYLOR = IniReadSection($SINI, "121")
Local $STAYLOR = ""
For $I = 1 To $ATAYLOR[0][0]
    $STAYLOR &= "|" & $ATAYLOR[$I][0]
Next
Local $AWARD = IniReadSection($SINI, "150")
Local $SWARD = ""
For $I = 1 To $AWARD[0][0]
    $SWARD &= "|" & $AWARD[$I][0]
Next
Local $ATHOMAS = IniReadSection($SINI, "151")
Local $STHOMAS = ""
For $I = 1 To $ATHOMAS[0][0]
    $STHOMAS &= "|" & $ATHOMAS[$I][0]
Next
Local $AORTIZ = IniReadSection($SINI, "152")
Local $SORTIZ = ""
For $I = 1 To $AORTIZ[0][0]
    $SORTIZ &= "|" & $AORTIZ[$I][0]
Next
Local $ABASSETTI = IniReadSection($SINI, "153")
Local $SBASSETTI = ""
For $I = 1 To $ABASSETTI[0][0]
    $SBASSETTI &= "|" & $ABASSETTI[$I][0]
Next
Local $AMARTINEZ = IniReadSection($SINI, "155")
Local $SMARTINEZ = ""
For $I = 1 To $AMARTINEZ[0][0]
    $SMARTINEZ &= "|" & $AMARTINEZ[$I][0]
Next
#endregion === Start Elementary Schools ===
#region === Start Instructional Support ===
Local $ATRANSPORTATION = IniReadSection($SINI, "008")
Local $STRANSPORTATION = ""
For $I = 1 To $ATRANSPORTATION[0][0]
    $STRANSPORTATION &= "|" & $ATRANSPORTATION[$I][0]
Next
Local $AADULTEDUCATION = IniReadSection($SINI, "101")
Local $SADULTEDUCATION = ""
For $I = 1 To $AADULTEDUCATION[0][0]
    $SADULTEDUCATION &= "|" & $AADULTEDUCATION[$I][0]
Next
Local $APLANETARIUM = IniReadSection($SINI, "131")
Local $SPLANETARIUM = ""
For $I = 1 To $APLANETARIUM[0][0]
    $SPLANETARIUM &= "|" & $APLANETARIUM[$I][0]
Next
Local $ATECHNOLOGYCENTER = IniReadSection($SINI, "200")
Local $STECHNOLOGYCENTER = ""
For $I = 1 To $ATECHNOLOGYCENTER[0][0]
    $STECHNOLOGYCENTER &= "|" & $ATECHNOLOGYCENTER[$I][0]
Next
Local $AONEAISDCENTER = IniReadSection($SINI, "201")
Local $SONEAISDCENTER = ""
For $I = 1 To $AONEAISDCENTER[0][0]
    $SONEAISDCENTER &= "|" & $AONEAISDCENTER[$I][0]
Next
Local $ATECHNOLOGYSUPPORT = IniReadSection($SINI, "202")
Local $STECHNOLOGYSUPPORT = ""
For $I = 1 To $ATECHNOLOGYSUPPORT[0][0]
    $STECHNOLOGYSUPPORT &= "|" & $ATECHNOLOGYSUPPORT[$I][0]
Next
Local $AWAREHOUSE = IniReadSection($SINI, "238")
Local $SWAREHOUSE = ""
For $I = 1 To $AWAREHOUSE[0][0]
    $SWAREHOUSE &= "|" & $AWAREHOUSE[$I][0]
Next
Local $AMAINTENANCE = IniReadSection($SINI, "251")
Local $SMAINTENANCE = ""
For $I = 1 To $AMAINTENANCE[0][0]
    $SMAINTENANCE &= "|" & $AMANN[$I][0]
Next
#endregion === Start Instructional Support ===
#region === Start Others ===
Local $AJEFFERSONCENTER = IniReadSection($SINI, "042")
Local $SJEFFERSONCENTER = ""
For $I = 1 To $AJEFFERSONCENTER[0][0]
    $SJEFFERSONCENTER &= "|" & $AJEFFERSONCENTER[$I][0]
Next
Local $ATAYLORCOUNTYJUVENILEJUSTICE = IniReadSection($SINI, "088")
Local $STAYLORCOUNTYJUVENILEJUSTICE = ""
For $I = 1 To $ATAYLORCOUNTYJUVENILEJUSTICE[0][0]
    $STAYLORCOUNTYJUVENILEJUSTICE &= "|" & $ATAYLORCOUNTYJUVENILEJUSTICE[$I][0]
Next
Local $ACROCKETTEARLYHEADSTART = IniReadSection($SINI, "107")
Local $SCROCEKTTEARLYHEADSTART = ""
For $I = 1 To $ACROCKETTEARLYHEADSTART[0][0]
    $SCROCEKTTEARLYHEADSTART &= "|" & $ACROCKETTEARLYHEADSTART[$I][0]
Next
Local $ALOCUSTEARLYCHILDHOOD = IniReadSection($SINI, "117")
Local $SLOCUSTEARLYCHILDHOOD = ""
For $I = 1 To $ALOCUSTEARLYCHILDHOOD[0][0]
    $SLOCUSTEARLYCHILDHOOD &= "|" & $ALOCUSTEARLYCHILDHOOD[$I][0]
Next
Local $AWOODSONEARLYCHILDHOOD = IniReadSection($SINI, "125")
Local $SWOODSONEARLYCHILDHOOD = ""
For $I = 1 To $AWOODSONEARLYCHILDHOOD[0][0]
    $SWOODSONEARLYCHILDHOOD &= "|" & $AWOODSONEARLYCHILDHOOD[$I][0]
Next
Local $AWOODSONEARLYHEADSTART = IniReadSection($SINI, "138")
Local $SWOODSONEARLYHEADSTART = ""
For $I = 1 To $AWOODSONEARLYHEADSTART[0][0]
    $SWOODSONEARLYHEADSTART &= "|" & $AWOODSONEARLYHEADSTART[$I][0]
Next
#endregion === Start Others ===



#region ### START Koda GUI section ### Form=C:\Users\104438\Desktop\Network.kxf
$Network = GUICreate("Network Print Manager", 800, 532, 180, 117)
GUISetFont(11)
$CCAMPUS_TYPE = GUICtrlCreateLabel("Campus Type", 24, 16, 69, 17)
$CCOMBO_TYPE = GUICtrlCreateCombo("", 112, 16, 201, 25, BitOR($ES_UPPERCASE, $GUI_SS_DEFAULT_COMBO, $CBS_DROPDOWNLIST))
GUICtrlSetData(-1, $SCAMPUS)
Local $CLABEL_LOCATION = GUICtrlCreateLabel("Location", 24, 56, 69, 17)
GUICtrlSetState(-1, $GUI_HIDE)
Local $CCOMBO_LOCATION = GUICtrlCreateCombo("", 112, 56, 201, 25, BitOR($ES_UPPERCASE, $GUI_SS_DEFAULT_COMBO, $CBS_DROPDOWNLIST))
GUICtrlSetState(-1, $GUI_HIDE)
$CLIST_APRINTER = GUICtrlCreateLabel("List of Available Printers", 424, 16, 116, 17)
$CLIST_PRINTER = GUICtrlCreateList("", 344, 40, 281, 461BitOR($LBS_SORT,$LBS_STANDARD,0x800,$WS_VSCROLL))
GUICtrlSetLimit(-1, -1)
$LR_GROUP = GUICtrlCreateGroup("", 24, 168, 297, 337)
Local $CRADIO_LOCAL = GUICtrlCreateRadio("This Computer", 56, 184, 113, 17)
GUICtrlSetState(-1, $GUI_CHECKED)
Local $CRADIO_REMOTE = GUICtrlCreateRadio("Remote Computer", 56, 208, 150, 17)
$CLIST_COMPUTERS = GUICtrlCreateEdit("", 48, 248, 249, 233, BitOR($ES_UPPERCASE, $ES_MULTILINE, $ES_WANTRETURN))
GUICtrlSetData(-1, "")
GUICtrlSetState(-1, $GUI_DISABLE)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$ADD_RADIO = GUICtrlCreateRadio("Add Printer", 24, 104, 113, 17)
GUICtrlSetState(-1, $GUI_CHECKED)
$DELETE_RADIO = GUICtrlCreateRadio("Delete Printer", 24, 128, 113, 17)
GUISetState(@SW_SHOW)
$MAKE_DEFAULT = GUICtrlCreateCheckbox('Set As Default Printer', 150, 100)
$BUTTON_GO = GUICtrlCreateButton('Go', 660, 40, 100, 100)
GUICtrlSetState(-1, $GUI_DISABLE)
#endregion ### END Koda GUI section ###

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
        Case $CCOMBO_TYPE
            GUICtrlSetState($CLABEL_LOCATION, $GUI_SHOW)
            GUICtrlSetState($CCOMBO_LOCATION, $GUI_SHOW)
            Switch GUICtrlRead($CCOMBO_TYPE)
                Case "Elementary"
                    GUICtrlSetData($CCOMBO_LOCATION, $SELEMENTARY)
                Case "High"
                    GUICtrlSetData($CCOMBO_LOCATION, $SHIGH)
                Case "Instructional Support"
                    GUICtrlSetData($CCOMBO_LOCATION, $SNONINSTRUCTIONAL)
                Case "Middle"
                    GUICtrlSetData($CCOMBO_LOCATION, $SMIDDLE)
                Case "Others"
                    GUICtrlSetData($CCOMBO_LOCATION, $SOTHERS)
            EndSwitch
        Case $CCOMBO_LOCATION
            GUICtrlSetState($CLIST_PRINTER, $GUI_SHOW)
            GUICtrlSetState($CLIST_PRINTER, $GUI_SHOW)
            Switch GUICtrlRead($CCOMBO_LOCATION)
                Case "001 - Abilene High"
                    GUICtrlSetData($CLIST_PRINTER, $SABILENEHIGH)
                    $PRINTLIST = "001"
                Case "002 - Cooper High"
                    GUICtrlSetData($CLIST_PRINTER, $SCOOPERHIGH)
                    $PRINTLIST = "002"
                Case "003 - Woodson High"
                    GUICtrlSetData($CLIST_PRINTER, $SWOODSONHIGH)
                    $PRINTLIST = "003"
                Case "009 - Holland High"
                    GUICtrlSetData($CLIST_PRINTER, $SHOLLANDHIGH)
                    $PRINTLIST = "009"
                Case "010 - ATEMS High"
                    GUICtrlSetData($CLIST_PRINTER, $SATEMSHIGH)
                    $PRINTLIST = "010"
                Case "044 - Madison"
                    GUICtrlSetData($CLIST_PRINTER, $SMADISON)
                    $PRINTLIST = "044"
                Case "045 - Mann"
                    GUICtrlSetData($CLIST_PRINTER, $SMANN)
                    $PRINTLIST = "045"
                Case "047 - Clack"
                    GUICtrlSetData($CLIST_PRINTER, $SCLACK)
                    $PRINTLIST = "047"
                Case "048 - Craig"
                    GUICtrlSetData($CLIST_PRINTER, $SCRAIG)
                    $PRINTLIST = "048"
                Case "080 - McMurry"
                    GUICtrlSetData($CLIST_PRINTER, $SMCMURRY)
                    $PRINTLIST = "080"
                Case "102 - Austin"
                    GUICtrlSetData($CLIST_PRINTER, $SAUSTIN)
                    $PRINTLIST = "102"
                Case "103 - Bonham"
                    GUICtrlSetData($CLIST_PRINTER, $SBONHAM)
                    $PRINTLIST = "103"
                Case "104 - Bowie"
                    GUICtrlSetData($CLIST_PRINTER, $SBOWIE)
                    $PRINTLIST = "104"
                Case "108 - Dyess"
                    GUICtrlSetData($CLIST_PRINTER, $SDYESS)
                    $PRINTLIST = "108"
                Case "112 - Jackson"
                    GUICtrlSetData($CLIST_PRINTER, $SJACKSON)
                    $PRINTLIST = "112"
                Case "113 - Johnston"
                    GUICtrlSetData($CLIST_PRINTER, $SJOHNSTON)
                    $PRINTLIST = "113"
                Case "116 - Lee"
                    GUICtrlSetData($CLIST_PRINTER, $SLEE)
                    $PRINTLIST = "116"
                Case "118 - Long"
                    GUICtrlSetData($CLIST_PRINTER, $SLONG)
                    $PRINTLIST = "118"
                Case "120 - Reagan"
                    GUICtrlSetData($CLIST_PRINTER, $SREAGAN)
                    $PRINTLIST = "120"
                Case "121 - Taylor"
                    GUICtrlSetData($CLIST_PRINTER, $STAYLOR)
                    $PRINTLIST = "121"
                Case "150 - Ward"
                    GUICtrlSetData($CLIST_PRINTER, $SWARD)
                    $PRINTLIST = "150"
                Case "151 - Thomas"
                    GUICtrlSetData($CLIST_PRINTER, $STHOMAS)
                    $PRINTLIST = "151"
                Case "152 - Ortiz"
                    GUICtrlSetData($CLIST_PRINTER, $SORTIZ)
                    $PRINTLIST = "152"
                Case "153 - Bassetti"
                    GUICtrlSetData($CLIST_PRINTER, $SBASSETTI)
                    $PRINTLIST = "153"
                Case "155 - Martinez"
                    GUICtrlSetData($CLIST_PRINTER, $SMARTINEZ)
                    $PRINTLIST = "155"
                Case "008 - Transportation"
                    GUICtrlSetData($CLIST_PRINTER, $STRANSPORTATION)
                    $PRINTLIST = "008"
                Case "101 - Adult Education"
                    GUICtrlSetData($CLIST_PRINTER, $SADULTEDUCATION)
                    $PRINTLIST = "101"
                Case "131 - Planetarium"
                    GUICtrlSetData($CLIST_PRINTER, $SPLANETARIUM)
                    $PRINTLIST = "131"
                Case "200 - Technology Center"
                    GUICtrlSetData($CLIST_PRINTER, $STECHNOLOGYCENTER)
                    $PRINTLIST = "200"
                Case "201 - One AISD Center"
                    GUICtrlSetData($CLIST_PRINTER, $SONEAISDCENTER)
                    $PRINTLIST = "201"
                Case "202 - Technology Support"
                    GUICtrlSetData($CLIST_PRINTER, $STECHNOLOGYSUPPORT)
                    $PRINTLIST = "202"
                Case "238 - Warehouse"
                    GUICtrlSetData($CLIST_PRINTER, $SWAREHOUSE)
                    $PRINTLIST = "238"
                Case "251 - Maintenance"
                    GUICtrlSetData($CLIST_PRINTER, $SMAINTENANCE)
                    $PRINTLIST = "251"
                Case "042 - Jefferson Center"
                    GUICtrlSetData($CLIST_PRINTER, $SJEFFERSONCENTER)
                    $PRINTLIST = "042"
                Case "088 - Taylor County Juvenile Justice"
                    GUICtrlSetData($CLIST_PRINTER, $STAYLORCOUNTYJUVENILEJUSTICE)
                    $PRINTLIST = "088"
                Case "107 - Crockett Early Head Start"
                    GUICtrlSetData($CLIST_PRINTER, $SCROCEKTTEARLYHEADSTART)
                    $PRINTLIST = "107"
                Case "117 - Locust Early Childhood"
                    GUICtrlSetData($CLIST_PRINTER, $SLOCUSTEARLYCHILDHOOD)
                    $PRINTLIST = "117"
                Case "125 - Woodson Early Childhood"
                    GUICtrlSetData($CLIST_PRINTER, $SWOODSONEARLYCHILDHOOD)
                    $PRINTLIST = "125"
                Case "138 - Woodson Early Head Start"
                    GUICtrlSetData($CLIST_PRINTER, $SWOODSONEARLYHEADSTART)
                    $PRINTLIST = "138"
            EndSwitch
        Case $CRADIO_REMOTE
            GUICtrlSetState($CLIST_COMPUTERS, $GUI_ENABLE)
        Case $CRADIO_LOCAL
            GUICtrlSetState($CLIST_COMPUTERS, $GUI_DISABLE)
            GUICtrlSetData($CLIST_COMPUTERS, "")
        Case $BUTTON_GO
            Local $PRINTPATH = IniRead($SINI, $PRINTLIST, GUICtrlRead($CLIST_PRINTER), "Error")
            $SET_DEFAULT = "0"
            $SET_DEFAULT_MSG = "No"
            If GUICtrlRead($MAKE_DEFAULT) = $GUI_CHECKED Then
                $SET_DEFAULT = "1"
                $SET_DEFAULT_MSG = "Yes"
            EndIf
            If GUICtrlRead($CRADIO_LOCAL) = 1 Then
                If GUICtrlRead($ADD_RADIO) = 1 Then
                    $Q = MsgBox(68, "Installing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & @ComputerName & @CRLF & "Set Default: " & $SET_DEFAULT_MSG)
                    If $Q = 6 Then
                        RunWait('rundll32 printui.dll, PrintUIEntry /R /ga /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                        If $SET_DEFAULT = "1" Then
                            Sleep(10000)
                            FileDelete("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\DefaultPrinter.cmd")
                            FileWriteLine("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\DefaultPrinter.cmd", "@ECHO OFF" & @CRLF & 'rundll32 printui.dll, PrintUIEntry /y /n "' & $PRINTPATH & '" /q')
                            RunWait('rundll32 printui.dll, PrintUIEntry /y /n "' & $PRINTPATH & '" /q', "", @SW_SHOW)
                            FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Add LOCAL Printer: """ & $PRINTPATH & """ on Computer: " & @ComputerName & " Set Default: " & $SET_DEFAULT_MSG)
                        EndIf
                    EndIf
                EndIf
            EndIf
            If GUICtrlRead($CRADIO_REMOTE) = 1 Then
                If GUICtrlRead($ADD_RADIO) = 1 Then
                    $Q = MsgBox(68, "Installing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & GUICtrlRead($CLIST_COMPUTERS) & @CRLF & "Set Default: " & $SET_DEFAULT_MSG)
                    If $Q = 6 Then
                        RunWait('rundll32 printui.dll, PrintUIEntry /R /ga /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                        If $SET_DEFAULT = "1" Then
                            Sleep(10000)
                            FileWriteLine("C:\Windows\Temp\DefaultPrinter.cmd", "@ECHO OFF" & @CRLF & 'rundll32 printui.dll, PrintUIEntry /y /n "' & $PRINTPATH & '" /q')
                            RunWait('copy "c:\Windows\Temp\DefaultPrinter.cmd" "\\' & GUICtrlRead($CLIST_COMPUTERS) & '\c$\\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp" /y', "", @SW_HIDE)
                            RunWait('rundll32 printui.dll, PrintUIEntry /y /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '" /q', "", @SW_SHOW)
                            FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Add REMOTE Printer: """ & $PRINTPATH & """ on Computer: " & GUICtrlRead($CLIST_COMPUTERS) & " Set Default: " & $SET_DEFAULT_MSG)
                        EndIf
                    EndIf
                EndIf
            EndIf
            If GUICtrlRead($CRADIO_REMOTE) = 1 Then
                If GUICtrlRead($DELETE_RADIO) = 1 Then
                    $Q = MsgBox(68, "Removing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & GUICtrlRead($CLIST_COMPUTERS))
                    If $Q = 6 Then
                        RunWait('rundll32 printui.dll, PrintUIEntry /gd /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                        FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Remove REMOTE Printer: """ & $PRINTPATH & """ on Computer: " & GUICtrlRead($CLIST_COMPUTERS))
                    EndIf
                EndIf
            EndIf
            If GUICtrlRead($CRADIO_LOCAL) = 1 Then
                If GUICtrlRead($DELETE_RADIO) = 1 Then
                    $Q = MsgBox(68, "Removing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & @ComputerName)
                    If $Q = 6 Then
                        RunWait('rundll32 printui.dll, PrintUIEntry /gd /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                        FileWriteLine("logs\Network_Print_Manager.log", @MON & '/' & @MDAY & '/' & @YEAR & ' @ ' & @HOUR & ':' & @MIN & ':' & @SEC & '          By: ' & @UserName & ' - Remove LOCAL Printer: "' & $PRINTPATH & '" on Computer: ' & @ComputerName)
                    EndIf
                EndIf
            EndIf
        Case $DELETE_RADIO
            GUICtrlSetState($MAKE_DEFAULT, $GUI_DISABLE + $GUI_UNCHECKED)
        Case $ADD_RADIO
            GUICtrlSetState($MAKE_DEFAULT, $GUI_ENABLE)
    EndSwitch
WEnd

 

 

[CAMPUS]
Elementary=0
High=0
Instructional Support=0
Middle=0
Others=0
[Elementary]
080 - McMurry=080
102 - Austin=102
103 - Bonham=103
104 - Bowie=104
108 - Dyess=108
112 - Jackson=112
113 - Johnston=113
116 - Lee=116
118 - Long=118
120 - Reagan=120
121 - Taylor=121
150 - Ward=150
151 - Thomas=151
152 - Oritz=152
153 - Bassetti=153
155 - Martinez=155
[High]
001 - Abilene High=001
002 - Cooper High=002
003 - Woodson High=003
009 - Holland High=009
010 - ATEMS High=010
[Instructional Support]
008 - Transportation=008
101 - Adult Education=101
131 - Planetarium=131
200 - Technology Center=200
201 - One AISD Center=201
202 - Technology Support=202
238 - Warehouse=238
251 - Maintenance=251
[Middle]
044 - Madison=044
045 - Mann=045
047 - Clack=047
048 - Craig=048
[Others]
042 - Jefferson Center=042
088 - Taylor County Juvenile Justice=088
107 - Crockett Early Head Start=107
117 - Locust Early Childhood=117
125 - Woodson Early Childhood=125
138 - Woodson Early Head Start=138
[001]
001-BM-601Scan = \\PrintHigh\001-BM-601Scan
001-BM-BandScan = \\PrintHigh\001-BM-BandScan
001-BM-Rm15Scan = \\PrintHigh\001-BM-Rm15Scan
001-BM-Rm160Scan = \\PrintHigh\001-BM-Rm160Scan
001-BM-Rm225Scan = \\PrintHigh\001-BM-Rm225Scan
001-BM-Rm244Scan = \\PrintHigh\001-BM-Rm244Scan
001-HB-Attn16BW = \\PrintHigh\001-HB-Attn16BW
001-HB-LRC01 = \\PrintHigh\001-HB-LRC01
001-HB-LRC02 = \\PrintHigh\001-HB-LRC02
001-HB-LRCLabBW = \\PrintHigh\001-HB-LRCLabBW
001-HB-LRCStudioLabBW = \\PrintHigh\001-HB-LRCStudioLabBW
001-HB-LRCWkRmBW = \\PrintHigh\001-HB-LRCWkRmBW
001-HB-RegisFax = \\PrintHigh\001-HB-RegisFax
001-HB-Rm119OfficeBW = \\PrintHigh\001-HB-Rm119OfficeBW
001-HB-Rm129BW = \\PrintHigh\001-HB-Rm129BW
001-HB-Rm130BW = \\Printhigh\001-HB-Rm130BW
001-HB-Rm209BW P1 = \\PrintHigh\001-HB-Rm209BW P1
001-HB-Rm209BW P2 = \\PrintHigh\001-HB-Rm209BW P2
001-HB-Rm24BW = \\PrintHigh\001-HB-Rm24BW
001-HB-Rm502BW = \\PrintHigh\001-HB-Rm502BW
001-HB-Rm604BW1 = \\PrintHigh\001-HB-Rm604BW1
001-HB-Rm604BW2 = \\PrintHigh\001-HB-Rm604BW2
001-HC-APSColor = \\Printhigh\001-HC-APSColor
001-HC-CounColor = \\Printhigh\001-HC-CounColor
001-HC-Office302Color = \\PrintHigh\001-HC-Office302Color
001-HC-Rm15Color = \\PrintHigh\001-HC-Rm15Color
001-HC-Rm505Color = \\PrintHigh\001-HC-Rm505Color
001-HM-CafeMFC = \\PrintHigh\001-HM-CafeMFC
001-RB-EngWkRmBW = \\PrintHigh\001-RB-EngWkRmBW
001-RC-LRCWkRmColor = \\PrintHigh\001-RC-LRCWkRmColor
001-XM-Bldg600WC = \\PrintHigh\001-XM-Bldg600WC
001-XM-CounXrx = \\PrintHigh\001-XM-CounXrx
001-XM-FieldXerox = \\printhigh\001-XM-FieldXerox
001-XM-GymWC = \\PrintHigh\001-XM-GymWC
001-XM-LRCWC = \\PrintHigh\001-XM-LRCWC
001-XM-RegisWC = \\PrintHigh\001-XM-RegisWC
001-XM-Rm143Xrx01 = \\PrintXerox\001-XM-Rm143Xrx01
001-XM-Rm143Xrx02 = \\PrintXerox\001-XM-Rm143Xrx02
9th Grade Academy Office-Color = \\PRINT01\Abilene HS-9th Grade Academy-Color Printer
Abilene HS-Room 505-Printer01 = \\PRINT01\Abilene HS-Room 505-Printer01
Abilene HS-Room 505-Printer02 = \\PRINT01\Abilene HS-Room 505-Printer02
Associate Principal Color02 = \\PRINT01\Abilene HS-Associate Principal Secretary-Color Printer02
Asst Principle Secretary Color = \\PRINT01\AHS-APS-Color
Attendance Fax = \\PRINT01\Abilene HS-Attendance Office-Fax
Attendance Office = \\PRINT01\Abilene HS-Attendance Office-Printer
Attn Scanner office 16 = \\PRINT01\Abilene HS-Office 16-Scanner
Attn Scanner office 7 = \\PRINT01\Abilene HS-Office 7-Scanner
Band Office B/W = \\PRINT01\AHS-Band-BW
Band Office Color = \\PRINT01\AHS-Band-Color
Bldg 500 Workroom = \\PRINT01\Abilene HS-Bldg 500 WkRm-Scanner
Business Workroom = \\PRINT01\Abilene HS-Business Workroom-Printer
CTE Office Fax = \\PRINT01\Abilene HS-CTE Office-Fax
Choir Office = \\PRINT01\Abilene HS-Choir Office-Printer
Computer Operator = \\PRINT01\Abilene HS-Computer Operator-Printer
Cool Coun. MFC = \\PRINT01\AHS-COOL-MFC
Counselor Fax = \\PRINT01\Abilene HS-Counselor-Fax
Counselors Office = \\PRINT01\Abilene HS-Counselor Office-Printer
English Workroom Mile 15 = \\PRINT01\Abilene HS-English Workroom-Mile15 Printer
English Workroom(Ricoh) = \\PRINT01\Abilene HS-English WorkRoom-Printer
Field House Color = \\PRINT01\Abilene HS-Field House-Color Printer01
Field House Fax = \\PRINT01\Abilene HS-Field House-Fax
Field House Film Room Color = \\PRINT01\Abilene HS-Field House Film Room-Color Printer
Field House Film Room Color = \\PRINT01\Abilene HS-Field House Film Room-Color Printer
Foreign Lang. WkRm Scanner = \\PRINT01\Abilene HS-ForLang WkRm-Scanner
History Workroom = \\PRINT01\Abilene HS-Hist WkRm-Scanner
LRC Lab = \\PRINT01\Abilene HS-LRC Lab-Printer
LRC Studio = \\PRINT01\Abilene HS-LRC Studio-Printer
LRC Workroom Color = \\PRINT01\Abilene HS-LRC Workroom-Color Printer
LRC p1 = \\PRINT01\Abilene HS-LRC-Printer01
LRC p2 = \\PRINT01\Abilene HS-LRC-Printer02
Math Workroom = \\PRINT01\Abilene HS-Math Workroom-Printer
Math Workroom Fax = \\PRINT01\Abilene HS-Math Workroom-Fax
Micro Lab = \\PRINT01\Abilene HS-LRC Micro Lab-Printer
Mile 128 = \\PRINT01\Abilene HS-Mile 128-BW
Mile 129 = \\PRINT01\AHS-Mile 129-BW
Mile 130 = \\PRINT01\AHS-Mile 130-BW
Mile 131 = \\PRINT01\AHS-Mile 131-BW
Mile 77 = \\PRINT01\Abilene HS-Mile 77-Printer
Mile 78 = \\PRINT01\Abilene HS-Mile 78-Printer
Mile 79 = \\PRINT01\Abilene HS-Mile 79-Printer
Mile 80 = \\PRINT01\Abilene HS-Mile 80-Printer
Mile 81 = \\PRINT01\Abilene HS-Mile 81-Printer
Mile 82 = \\PRINT01\Abilene HS-Mile 82-Printer
Mile 83 = \\PRINT01\Abilene HS-Mile 83-Printer
Mile 84 = \\PRINT01\Abilene HS-Mile 84-Printer
Mile 85 = \\PRINT01\Abilene HS-Mile 85-Printer
Mile 86 = \\PRINT01\Abilene HS-Mile 86-Printer
Nova Net = \\PRINT01\Abilene HS-Nova Net-Mile17 Printer
Office 24 = \\PRINT01\Abilene HS-Office 24-Scanner
Office 26 Attendance MFC = \\PRINT01\AHS-Office 26-MFC
Office 29 = \\PRINT01\Abilene HS-Office 29-Scanner
Office 45 Ag Room MFC = \\PRINT01\AHS-Office 45-MFC
Office 76 MFC = \\PRINT01\AHS-Office76-MFC
Office 78 BB Fax = \\PRINT01\Abilene HS-Office 78-Scanner
Office 78 MFC = \\PRINT01\AHS-Office78-MFC
Portable 1 = \\PRINT01\Abilene HS-Portable 1-Printer
Portable 2 = \\PRINT01\Abilene HS-Portable 2-Printer
Portable 4 Fax = \\PRINT01\Abilene HS-Portable 4-Fax
Registrar = \\PRINT01\Abilene HS-Registrar-Printer
Registrar Fax = \\PRINT01\Abilene HS-Registrar-Fax
Registrar02 = \\PRINT01\Abilene HS-Registrar-Printer02
Room 103 Fax = \\PRINT01\Abilene HS-Room 103-Fax
Room 107 Fax = \\PRINT01\Abilene HS-Room 107-Fax
Room 115 = \\PRINT01\Abilene HS-Room 115-Printer
Room 117 = \\PRINT01\Abilene HS-Room 117-Printer01
Room 120 Fax = \\PRINT01\Abilene HS-Room 120-Fax
Room 141A = \\PRINT01\Abilene HS-Room 141A-Printer
Room 141B = \\PRINT01\Abilene HS-Room 141B-Printer
Room 142 Fax = \\PRINT01\Abilene HS-Room 142-Fax
Room 143 Scanner = \\PRINT01\Abilene HS-Room 143-Scanner
Room 143 Xerox #1 = \\PRINT01\Abilene HS-Room 143-Xerox
Room 143 Xerox #2 = \\PRINT01\Abilene HS-Room 143-Xerox2
Room 144 = \\PRINT01\Abilene HS-Room 144-Mile01 Printer
Room 144 Read 180 = \\PRINT01\Abilene HS-Room 144-180 Printer
Room 146 System 44 = \\PRINT01\Abilene HS-Room 146-sys 44 Printer
Room 147 = \\PRINT01\Abilene HS-Room 147-Scanner
Room 153 = \\PRINT01\Abilene HS-Room 153-Printer
Room 155 = \\PRINT01\Abilene HS-Room 155-Scanner
Room 159 = \\PRINT01\Abilene HS-Room 159-Scanner
Room 201 = \\PRINT01\Abilene HS-Room 201-Printer
Room 203 p1 = \\PRINT01\Abilene HS-Room 203-Printer01
Room 203 p2 = \\PRINT01\Abilene HS-Room 203-Printer02
Room 205 p1 = \\PRINT01\Abilene HS-Room 205-Printer01
Room 205 p2 = \\PRINT01\Abilene HS-Room 205-Printer02
Room 207 Lab Printer = \\PRINT01\Abilene HS-Room 207-Printer01
Room 207 Office = \\PRINT01\Abilene HS-Room 207-Printer03
Room 207 Scanner = \\PRINT01\Abilene HS-Room 207-Scanner
Room 209 p2 = \\PRINT01\Abilene HS-Room 209-Printer02
Room 220 Fax = \\PRINT01\Abilene HS-Room 220-Fax
Room 224 Fax = \\PRINT01\Abilene HS-Room 224-Fax
Room 225 = \\PRINT01\Abilene HS-Room 225-Scanner
Room 226 = \\PRINT01\Abilene HS-Room 226-Printer
Room 228 = \\PRINT01\Abilene HS-Room 228-Printer
Room 241 = \\PRINT01\Abilene HS-Room 241-Printer
Room 243 = \\PRINT01\Abilene HS-Room 243-Printer01
Room 244 Read 180 = \\PRINT01\Abilene HS-Room 244-180 Printer
Room 248 Color = \\PRINT01\Abilene HS-Room 248-Color Printer
Room 249 = \\PRINT01\Abilene HS-Room 249-Printer
Room 253 = \\PRINT01\Abilene HS-Room 253-Printer
Room 502 = \\PRINT01\Abilene HS-Room 502-Printer
Room 508 = \\PRINT01\Abilene HS-Room 508-Printer
Room 508 Plotter = \\PRINT01\Abilene HS-Room 508-Plotter
Room 602 Color = \\PRINT01\Abilene HS-Room 602-Color Printer
Room 604 Color = \\PRINT01\Abilene HS-Room 604-Color Printer
Room 604 p1 = \\PRINT01\Abilene HS-Room 604-Printer01
Room 604 p2 = \\PRINT01\Abilene HS-Room 604-Printer02
Room 609 = \\PRINT01\Abilene HS-Room 609-Printer01
Room 611 = \\PRINT01\Abilene HS-Room 611-Printer01
Room 613 = \\PRINT01\Abilene HS-Room 613-Printer01
Room 614 Fax = \\PRINT01\Abilene HS-Room 614-Fax
SPED Mile 23 = \\PRINT01\Abilene HS-SPED Mile 23-Printer
Science WorkRoom = \\PRINT01\Abilene HS-Science WorkRoom-Printer
SpEd Office = \\PRINT01\Abilene HS-SpEd Office-Fax
YearBook Color-Dell = \\PRINT01\Abilene HS-YearBook-Color Printer
[002]
002-BM-CafeMFC = \\PrintHigh\002-BM-CafeMFC
002-BM-LRCMFC = \\printhigh\002-BM-LRCMFC
002-BM-Rm100Office = \\PrintHigh\002-BM-Rm100Office
002-BM-V12MFC = \\Printhigh\002-BM-V12MFC
002-BM-V2MFC = \\PrintHigh\002-BM-V2MFC
002-HB-311BW01 = \\PrintHigh\002-HB-311BW01
002-HB-311BW02 = \\PrintHigh\002-HB-311BW02
002-HB-EngConfRm = \\PrintHigh\002-HB-EngConfRm
002-HB-ForLangConfRm = \\PrintHigh\002-HB-ForLangConfRm
002-HB-LRC01 = \\PrintHigh\002-HB-LRC01
002-HB-LRC02 = \\PrintHigh\002-HB-LRC02
002-HB-LRC2BW = \\printhigh\002-HB-LRC2BW
002-HB-LRCLab01 = \\Printhigh\002-HB-LRCLab01
002-HB-LRCLab02 = \\Printhigh\002-HB-LRCLab02
002-HB-P1SpEdBW = \\printhigh\002-HB-P1SpEdBW
002-HB-Rm302 = \\PrintHigh\002-HB-RM302
002-HB-RmS29 = \\PrintHigh\002-HB-RmS29
002-HB-S20BW = \\PrintHigh\002-HB-S20BW
002-HB-S25BW = \\PrintHigh\002-HB-S25BW
002-HB-S2P1 = \\Printhigh\002-HB-S2P1
002-HB-S2P2 = \\Printhigh\002-HB-S2P2
002-HB-S3BW = \\PrintHigh\002-HB-S3BW
002-HB-S4BW = \\PrintHigh\002-HB-S4BW
002-HB-TheatreBW = \\PrintHigh\002-HB-TheatreBW
002-HB-V19BW01 = \\PrintHigh\002-HB-V19BW01
002-HB-V19BW02 = \\PrintHigh\002-HB-V19BW02
002-HC-S18Color = \\PrintHigh\002-HC-S18Color
002-RB-LRCLab01 = \\PrintHigh\002-RB-LRCLab01
002-RB-LRCLab02 = \\printhigh\002-RB-LRCLab02
002-RB-P4BW = \\Printhigh\002-RB-P4BW
002-RC-LRCColor = \\PrintHigh\002-RC-LRCColor
002-XM-BandXerox = \\printhigh\002-XM-BandXerox
002-XM-CounOffWC = \\PrintHigh\002-XM-CounOffWC
002-XM-FrAttXerox = \\printhigh\002-XM-FrAttXerox
002-XM-GymXrx = \\printhigh\002-XM-GymXrx
002-XM-V4Xrx = \\PrintXerox\002-XM-V4Xrx
ARD Room = \\PRINT01\Cooper HS-ARD Room-Printer
ART Office Color = \\PRINT01\Cooper HS-Art Office-Color Printer
Academy Principle Scanner = \\PRINT01\Cooper HS-Academy Principle-Scanner
Academy Xerox = \\PRINT01\Cooper HS-Academy-Xerox
Attendance = \\PRINT01\Cooper HS-Attendance-Printer
Band Hall = \\PRINT01\Cooper HS-Band Hall-Printer
Cooper HS-Room S2-Color Printer = \\print01\Cooper HS-Room S2-Color Printer
Copy Room Xerox = \\PRINT01\Cooper HS-Copy Room-Xerox
Copy Room-Xerox2 = \\print01\Cooper HS-Copy Room-Xerox2
Counselor = \\PRINT01\Cooper HS-Counselor-Printer
Counselor Xerox = \\PRINT01\Cooper HS-Counselor-Xerox
Field House = \\PRINT01\Cooper HS-Field House-Printer
Field House Color = \\PRINT01\Cooper HS-Field House-Color Printer
Field House Color2 = \\PRINT01\Cooper HS-Field House-Color Printer2
Field House NEW Color = \\PRINT01\CHS-Field House-NewCP
Field House Xerox = \\PRINT01\Cooper HS-Field House-Xerox
Freshman Attendance = \\PRINT01\Cooper HS-Freshman Attendance-Printer
Gym Classroom G-1 = \\PRINT01\CHS-G1-MFC
Gym Xerox = \\PRINT01\Cooper HS-Gym-Xerox
LRC Fax = \\PRINT01\Cooper HS-LRC-Fax
LRC HP Printer 1(new) = \\PRINT01\CHS-LRC-P01-12
LRC HP Printer 2(new) = \\PRINT01\CHS-LRC-P02-12
LRC Lab P1 = \\PRINT01\Cooper HS-LRC Lab-Printer01
LRC Lab P2 = \\PRINT01\Cooper HS-LRC Lab-Printer02
LRC Mile16 = \\PRINT01\Cooper HS-LRC-Mile16 Printer
LRC Office Fax = \\PRINT01\Cooper HS-LRC Office-Fax
LRC Studio BW = \\PRINT01\CHS-LRC Studio-BW
LRC Workroom Color = \\PRINT01\Cooper HS-LRC Workroom-Color Printer
MILE 96-97 BW = \\PRINT01\CHS-MILE96-97-BW
MILE 98-99 BW = \\PRINT01\CHS-MILE98-99-BW
New Band Hall BW = \\PRINT01\CHS-BandHall-BW
Nova Net = \\PRINT01\Cooper HS-Nova Net-Mile22 Printer
Nurse's Office = \\PRINT01\Cooper HS-Nurse Office-Fax
Portable 2 = \\PRINT01\Cooper HS-Portable 2-Printer
Registrar = \\PRINT01\Cooper HS-Registrar-Printer02
Registrar(Data) = \\PRINT01\Cooper HS-Registrar-Printer01
Room 103 = \\PRINT01\Cooper HS-Room 103-Printer
Room 108-SpEd BW = \\PRINT01\CHS-108-SpEdBW
Room 118 = \\PRINT01\Cooper HS-Room 118-Printer
Room 200 Color = \\PRINT01\Cooper HS-Room 200-Printer
Room 200 Read180 = \\PRINT01\Cooper HS-Room 200-180 Printer
Room 203 p1 = \\PRINT01\Cooper HS-Room 203-Printer01
Room 203 p2 = \\PRINT01\Cooper HS-Room 203-Printer02
Room 207 Color = \\PRINT01\Cooper HS-Room 207-Color Printer
Room 215 Color = \\PRINT01\Cooper HS-Room 215-Color Printer
Room 230 Fax = \\PRINT01\Cooper HS-Room 230-Fax
Room 307 Color = \\PRINT01\Cooper HS-Room 307-Color Printer
Room 311 = \\PRINT01\Cooper HS-Room 311-Printer01
Room 317 = \\PRINT01\Cooper HS-Room 317-Printer
Room 320 = \\PRINT01\Cooper HS-Room 320-Printer
Room S-1 Read180 = \\PRINT01\Cooper HS-Room S1-180 Printer
Room S1 = \\PRINT01\Cooper HS-Room S1-Printer01
Room S10 = \\PRINT01\Cooper HS-Room S10-Printer
Room S11 Color = \\PRINT01\Cooper HS-Room S11-Color Printer
Room S18 Color = \\PRINT01\Cooper HS-Room S18-Color Printer
Room S2 p1 = \\PRINT01\Cooper HS-Room S2-Printer01
Room S2 p2 = \\PRINT01\Cooper HS-Room S2-Printer02
Room S20 p1 = \\PRINT01\Cooper HS-Room S20-Printer01
Room S20 p2 = \\PRINT01\Cooper HS-Room S20-Printer02
Room S3 p1 = \\PRINT01\Cooper HS-Room S3-Printer01
Room S3 p2 = \\PRINT01\Cooper HS-Room S3-Printer02
Room S4 = \\PRINT01\Cooper HS-Room S4-Printer01
Room S7 = \\PRINT01\Cooper HS-Room S7-Printer
Room S7 Fax = \\PRINT01\Cooper HS-Room S7-Fax
Room S9 = \\PRINT01\Cooper HS-Room S9-Printer
Room S9 Printer 02 = \\PRINT01\Cooper HS-Room S9-Printer02
Room S9 Printer 02 = \\PRINT01\Cooper HS-Room S9-Printer02
Room V-21 Read180 = \\PRINT01\Cooper HS-Room V21-180 Printer
Room V1 Fax = \\PRINT01\Cooper HS-Room V1-Color Printer
Room V10 Fax = \\PRINT01\Cooper HS-Room V10 Office-Fax
Room V11 Printer = \\PRINT01\Cooper HS-Room V11-Printer
Room V12 Printer = \\PRINT01\Cooper HS-Room V12-Printer
Room V15 P1 = \\PRINT01\Cooper HS-Room V15-Printer01
Room V15 P2 = \\PRINT01\Cooper HS-Room V15-Printer02
Room V17 Fax = \\PRINT01\Cooper HS-Room V17-Fax
Room V19 P1 = \\PRINT01\Cooper HS-Room V19-Printer01
Room V19 P2 = \\PRINT01\Cooper HS-Room V19-Printer02
Room V21 Printer = \\PRINT01\Cooper HS-Room V21-Printer
Room V3 Classroom = \\PRINT01\Cooper HS-Room V3-Classroom Printer
Room V3 Office = \\PRINT01\Cooper HS-Room V3-Office Printer
Room V8 Fax = \\PRINT01\Cooper HS-Room V8-Fax
Room V9 = \\PRINT01\Cooper HS-Room V9-Printer01
SCIENCE WORKROOM New B/W = \\PRINT01\CHS-SciWkRm-B-W
SPED Mile 24 = \\PRINT01\Cooper HS-SPED Mile 24-Printer
Science Workroom Fax = \\PRINT01\Cooper HS-Science Workroom-Fax
Social Studies Workroom = \\PRINT01\Cooper HS-Social Studies Workroom-Printer
Switchboard Xerox = \\PRINT01\Cooper HS-Switchboard-Xerox
Yearbook Color = \\PRINT01\Cooper HS-Yearbook-Color Printer
Yearbook p1 = \\PRINT01\Cooper HS-Yearbook-Printer01
Yearbook p2 = \\PRINT01\Cooper HS-Yearbook-Printer02
[003]
003-BM- Rm205Scan = \\PrintHigh\003-BM- Rm205Scan
003-BM-CounMFC = \\PrintHigh\003-BM-CounMFC
003-BM-PrinScan = \\PrintHigh\003-BM-PrinScan
003-HB-Rm102BW = \\PrintHigh\003-HB-Rm102BW
003-HM-FrntOfficeFax = \\PrintHigh\003-HM-FrntOfficeFax
003-XM-Rm303XrX = \\PrintHigh\003-XM-Rm303XrX
Assistant Principle Color = \\PRINT01\Woodson Center for Excellence- Assistant Principle Office-Color Printer
Assistant Principles Office MFC = \\PRINT01\Excel-AsstPrinciple-MFC
Copy Room Color = \\PRINT01\Woodson Center for Excellence-Copy Room-Color Printer
Counselor FAX-Scanner = \\PRINT01\Woodson Center for Excellence-CounOffice-Fax
Excel Office Fax = \\PRINT01\Woodson Center for Excellence-Excel Office-Fax
Front Office Fax = \\PRINT01\Woodson Center for Excellence-Front Office-Fax
LRC = \\PRINT01\Woodson Center for Excellence-LRC-Printer
LRC Printer 2 = \\PRINT01\Woodson Center for Excellence-LRC-Printer2
MILE Cart 94-95 Printer = \\PRINT01\Excel-Mile94-95-BW
Main Office Color (Principal) = \\PRINT01\Woodson Center for Excellence-Main Office-Color Printer
Principles Office MFC = \\PRINT01\Excel-Principle-MFC
Rm107-Color = \\Print01\Excel-Rm107-Color
Room 106 = \\PRINT01\Woodson Center for Excellence-Room 106-Printer
Room 107 = \\PRINT01\Woodson Center for Excellence-Room 107-Printer
Room 109 = \\PRINT01\Woodson Center for Excellence-Room 109-Printer
Room 109 Mile13 = \\PRINT01\Woodson Center for Excellence-Room 109-Mile13 Printer
Room 109(New) Workroom Printer = \\PRINT01\Woodson Center for Excellence-Room 109 Workroom-Printer
Room 111 Fax = \\PRINT01\Woodson Center for Excellence-Room 111-Fax
Room 115 Fax = \\PRINT01\Woodson Center for Excellence-Room 115-Fax
Room 19 = \\PRINT01\Woodson Center for Excellence-Room 19-Printer
Room 2 = \\PRINT01\Woodson Center for Excellence-Room 2-Printer
Room 300 Office = \\PRINT01\Woodson Center for Excellence-Room 300-Printer
Room 6 = \\PRINT01\Woodson Center for Excellence-Room 6-Printer
Room 7 = \\PRINT01\Woodson Center for Excellence-Room 7-Printer
Room 8 = \\PRINT01\Woodson Center for Excellence-Room 8-Printer
Room 9 Xerox = \\PRINT01\Woodson Center for Excellence-Room 9-Xerox
WorkRoom 109 Color Printer = \\PRINT01\Excel-Rm109-Color
[008]
Office Color = \\PRINT01\Transportation-Office-Color Printer
Office FAX-Printer = \\PRINT01\Transportation-Office-Fax-Printer
Office Plotter = \\PRINT01\Transportation-Office-Plotter
[009]
009-DB-StuPrint01 = \\PrintHigh\009-DB-StuPrint01
009-HC-DeanColor = \\PrintHigh\009-HC-DeanColor
009-XM-OffXerox = \\printhigh\009-XM-OffXerox
Office = \\PRINT01\Holland Medical High-Office-Printer
Office Color = \\PRINT01\Holland Medical High-Office-Color Printer
Office Fax = \\PRINT01\Holland Medical High-Office-Fax
Room 104 = \\PRINT01\Holland Medical High-Room 104-Printer
Room 107 = \\PRINT01\Holland Medical High-Room 107-Printer
Room 108 = \\PRINT01\Holland Medical High-Room 108-Printer
Room 120 = \\PRINT01\Holland Medical High-Room 120-Printer
Room 121 Color = \\PRINT01\Holland Medical High-Room 121-Color Printer
Room 124 = \\PRINT01\Holland Medical High-Room 124-Printer
Room 125 = \\PRINT01\Holland Medical High-Room 125-Printer
Room 125 New = \\PRINT01\Holland Medical High-Room 125-Printer2
[010]
010-BM-ICMFC = \\PrintHigh\010-BM-ICMFC
010-BM-Recpt = \\PrintHigh\010-BM-Recpt
010-BM-Rm212 = \\PrintHigh\010-BM-Rm212
010-HB-Rm239 = \\PrintHigh\010-HB-Rm239
010-HB-Rm250cBW = \\PrintHigh\010-HB-Rm250cBW
010-HC-CounColor = \\PrintHigh\010-HC-CounColor
010-HC-DirOff = \\PrintHigh\010-HC-DirOff
010-HC-Rm214 = \\PrintHigh\010-HC-Rm214
010-HC-Rm231 = \\PrintHigh\010-HC-Rm231
010-HC-Rm250Color = \\PrintHigh\010-HC-Rm250Color
010-HC-SecColor = \\PrintHigh\010-HC-SecColor
010-RB-CounOff = \\PrintHigh\010-RB-CounOff
010-RB-ICOff = \\PrintHigh\010-RB-ICOff
010-RB-Rm230 = \\PrintHigh\010-RB-Rm230
010-RB-Rm241 = \\PrintHigh\010-RB-Rm241
010-RB-Rm250bBW = \\PrintHigh\010-RB-Rm250bBW
010-RB-Rm260 = \\PrintHigh\010-RB-Rm260
010-RB-WkRmBW = \\PrintHigh\010-RB-WkRmBW
010-XM-WrkrmXrx = \\printhigh\010-XM-WrkrmXrx
1st Floor Color = \\PRINT01\New Tech HS-1st Floor-Color Printer
Front Receptionist MFC = \\PRINT01\ATEMS-Recpt-MFC
OFFICE 143 MFC = \\PRINT01\ATEMS-143-MFC
Office Fax = \\PRINT01\New Tech HS-Office-Fax
Room 212 MFC = \\PRINT01\ATEMS-212-MFC
Room 231-Lab = \\PRINT01\New Tech HS-Room 231-Lab
Room 233 = \\PRINT01\New Tech HS-Room 233-Printer
Room 236-Counselor Office = \\PRINT01\New Tech HS-Room 236-Counselor Office
Room 239-Meeting Room = \\PRINT01\New Tech HS-Room 239-Meeting Room
Room 241 = \\PRINT01\New Tech HS-Room 241
Room 250 = \\PRINT01\New Tech HS-Room 250
Room 250B = \\PRINT01\New Tech HS-Room 250B
Room 250B Color = \\PRINT01\New Tech HS-Room 250B-Color Printer
Room 250B Mr Nease's Color = \\PRINT01\ATEMS-250B-Color
Room 251 WkRm Color = \\PRINT01\New Tech HS-Room 251-Color Printer
Room 260 = \\PRINT01\New Tech HS-Room 260
Xerox = \\PRINT01\New Tech HS-Xerox
[042]
042-HB-Rm109BW = \\printmiddle\042-HB-Rm109BW
042-HC-Office119Color = \\printmiddle\042-HC-Office119Color
042-HC-Office123AColor = \\printmiddle\042-HC-Office123AColor
042-HC-Office124Color = \\printmiddle\042-HC-Office124Color
042-HM-GroundsShopMFC = \\printmiddle\042-HM-GroundsShopMFC
042-XM-OffXerox = \\Printmiddle\042-xm-OffXerox
042-XM-Rm126A = \\printmiddle\042-XM-Rm126A
042-XM-Rm126B = \\printmiddle\042-XM-Rm126B
Admin Office 1 = \\PRINT01\Jefferson Center-Rm 124-Admin1-Color Printer
Admin Office 2 = \\PRINT01\Jefferson Center-Rm 123-Admin2-Printer
Counselors Office = \\PRINT01\Jefferson Center-Counselors Office-Printer
LRC LAB = \\PRINT01\Jefferson Center-LRC Lab-Printer
Main Office Xerox = \\PRINT01\Jefferson Center-Main Office-Xerox
Rm128 SpEd Office = \\PRINT01\Jefferson Center-Rm 128 SpEd Office-Fax
Room 109 = \\PRINT01\Jefferson Center-Rm 109-Printer
Room 119 = \\PRINT01\Jefferson Center-Rm 119-CP
Room 147 = \\PRINT01\Jefferson Center-Rm 147-Printer
Room 170 = \\PRINT01\Jefferson Center-Rm 170-Printer
Teacher workroom = \\PRINT01\Jefferson Center-Rm 126- Teacher WkRm-Printer
Workroom Xerox = \\PRINT01\Jefferson Center-Teacher WkRm-Xerox
[044]
044--HB-Rm2BW = \\PrintMiddle\044--HB-Rm2BW
044--HB-Rm4BW = \\PrintMiddle\044--HB-Rm4BW
044--HB-Rm7BW = \\PrintMiddle\044--HB-Rm7BW
044--HB-Rm8BW = \\PrintMiddle\044--HB-Rm8BW
044-BM-Rm22Scan = \\PrintMiddle\044-BM-Rm22Scan
044-BM-Rm7Scan = \\PrintMiddle\044-BM-Rm7Scan
044-BM-RmV2Scan = \\PrintMiddle\044-BM-RmV2Scan
044-HB-FrntOffBW = \\PrintMiddle\044-HB-FrntOffBW
044-HB-GirlsGymBW = \\PrintMiddle\044-HB-GirlsGymBW
044-HB-LRCBW = \\PrintMiddle\044-HB-LRCBW
044-HB-Rm13BW = \\PrintMiddle\044-HB-Rm13BW
044-HB-Rm24BW = \\PrintMiddle\044-HB-Rm24BW
044-HB-RmF1BW = \\printmiddle\044-HB-RmF1BW
044-HB-RmV2BW = \\PrintMiddle\044-HB-RmV2BW
044-HC-CounColor = \\PrintMiddle\044-HC-CounColor
044-RB-RmF1BW = \\PrintMiddle\044-RB-RmF1BW
044-XM-OffXerox = \\PrintMiddle\044-XM-OffXerox
Clinic MFC = \\PRINT01\Madison-Clinic-MFC
Counselor = \\PRINT01\Madison MS-Counselor-Printer
Counselor Office = \\PRINT01\Madison MS-Counselor office-Printer
LRC = \\PRINT01\Madison MS-LRC-Printer01
Office = \\PRINT01\Madison MS-Office-Printer
Office Color = \\PRINT01\Madison MS-Office-Color Printer
Portable 11-Read 180 = \\PRINT01\Madison MS-Portable 11-180 Printer
Portable 2 MFC = \\PRINT01\Madison-P2-MFC
Portable 8 = \\PRINT01\Madison MS-Room P8-Printer-Scanner
Principles office Color = \\PRINT01\Madison MS-Room 14-Color Printer
Room 11 = \\PRINT01\Madison MS-Room 11-Printer
Room 16 = \\PRINT01\Madison MS-Room 16-Printer
Room 17-Read 180 = \\PRINT01\Madison MS-Room 17-180 Printer
Room 18 = \\PRINT01\Madison MS-Room 18-Printer
Room 22 p1 = \\PRINT01\Madison MS-Room 22-Printer01
Room 22 p2 = \\PRINT01\Madison MS-Room 22-Printer02
Room 24 = \\PRINT01\Madison MS-Room 24-Printer
Room 24 Yearbook Color = \\PRINT01\Madison MS-Room 24-Yearbook Color Printer
Room 26 = \\PRINT01\Madison MS-Room 26-Printer
Room 26-Read 180 = \\PRINT01\Madison MS-Room 26-180 Printer
Room 27 = \\PRINT01\Madison MS-Room 27-Printer-Scanner
Room 28A Fax = \\PRINT01\Madison MS-Room 28A-Fax
Room 29A COLOR = \\PRINT01\Madison MS-Room 29a-Color Printer
Room 2A (SPED Off) = \\PRINT01\Madison MS-Room 2A-Printer
Room 2B (Confer room) = \\PRINT01\Madison MS-Room 2B-Printer
Room 35A = \\PRINT01\Madison MS-Room 35A-Printer
Room 7 = \\PRINT01\Madison MS-Room 7-Printer
Room V2 p1 = \\PRINT01\Madison MS-Room V2-Printer01
Room V2 p2 = \\PRINT01\Madison MS-Room V2-Printer02
Workroom Printer = \\PRINT01\Madison MS-Workroom-Printer
Workroom Xerox 01 = \\PRINT01\Madison MS-Workroom-Xerox01
Workroom Xerox 02 = \\PRINT01\Madison MS-Workroom-Xerox02
[044]
044--HB-Rm2BW = \\PrintMiddle\044--HB-Rm2BW
044--HB-Rm4BW = \\PrintMiddle\044--HB-Rm4BW
044--HB-Rm7BW = \\PrintMiddle\044--HB-Rm7BW
044--HB-Rm8BW = \\PrintMiddle\044--HB-Rm8BW
044-BM-Rm22Scan = \\PrintMiddle\044-BM-Rm22Scan
044-BM-Rm7Scan = \\PrintMiddle\044-BM-Rm7Scan
044-BM-RmV2Scan = \\PrintMiddle\044-BM-RmV2Scan
044-HB-FrntOffBW = \\PrintMiddle\044-HB-FrntOffBW
044-HB-GirlsGymBW = \\PrintMiddle\044-HB-GirlsGymBW
044-HB-LRCBW = \\PrintMiddle\044-HB-LRCBW
044-HB-Rm13BW = \\PrintMiddle\044-HB-Rm13BW
044-HB-Rm24BW = \\PrintMiddle\044-HB-Rm24BW
044-HB-RmF1BW = \\printmiddle\044-HB-RmF1BW
044-HB-RmV2BW = \\PrintMiddle\044-HB-RmV2BW
044-HC-CounColor = \\PrintMiddle\044-HC-CounColor
044-RB-RmF1BW = \\PrintMiddle\044-RB-RmF1BW
044-XM-OffXerox = \\PrintMiddle\044-XM-OffXerox
Clinic MFC = \\PRINT01\Madison-Clinic-MFC
Counselor = \\PRINT01\Madison MS-Counselor-Printer
Counselor Office = \\PRINT01\Madison MS-Counselor office-Printer
LRC = \\PRINT01\Madison MS-LRC-Printer01
Office = \\PRINT01\Madison MS-Office-Printer
Office Color = \\PRINT01\Madison MS-Office-Color Printer
Portable 11-Read 180 = \\PRINT01\Madison MS-Portable 11-180 Printer
Portable 2 MFC = \\PRINT01\Madison-P2-MFC
Portable 8 = \\PRINT01\Madison MS-Room P8-Printer-Scanner
Principles office Color = \\PRINT01\Madison MS-Room 14-Color Printer
Room 11 = \\PRINT01\Madison MS-Room 11-Printer
Room 16 = \\PRINT01\Madison MS-Room 16-Printer
Room 17-Read 180 = \\PRINT01\Madison MS-Room 17-180 Printer
Room 18 = \\PRINT01\Madison MS-Room 18-Printer
Room 22 p1 = \\PRINT01\Madison MS-Room 22-Printer01
Room 22 p2 = \\PRINT01\Madison MS-Room 22-Printer02
Room 24 = \\PRINT01\Madison MS-Room 24-Printer
Room 24 Yearbook Color = \\PRINT01\Madison MS-Room 24-Yearbook Color Printer
Room 26 = \\PRINT01\Madison MS-Room 26-Printer
Room 26-Read 180 = \\PRINT01\Madison MS-Room 26-180 Printer
Room 27 = \\PRINT01\Madison MS-Room 27-Printer-Scanner
Room 28A Fax = \\PRINT01\Madison MS-Room 28A-Fax
Room 29A COLOR = \\PRINT01\Madison MS-Room 29a-Color Printer
Room 2A (SPED Off) = \\PRINT01\Madison MS-Room 2A-Printer
Room 2B (Confer room) = \\PRINT01\Madison MS-Room 2B-Printer
Room 35A = \\PRINT01\Madison MS-Room 35A-Printer
Room 7 = \\PRINT01\Madison MS-Room 7-Printer
Room V2 p1 = \\PRINT01\Madison MS-Room V2-Printer01
Room V2 p2 = \\PRINT01\Madison MS-Room V2-Printer02
Workroom Printer = \\PRINT01\Madison MS-Workroom-Printer
Workroom Xerox 01 = \\PRINT01\Madison MS-Workroom-Xerox01
Workroom Xerox 02 = \\PRINT01\Madison MS-Workroom-Xerox02
[045]
045-BM-RmB5Scan = \\PrintMiddle\045-BM-RmB5Scan
045-BM-RmB6MFC = \\PrintMiddle\045-BM-RmB6MFC
045-HB-A5BW = \\PrintMiddle\045-HB-A5BW
045-HB-B9BW = \\PrintMiddle\045-HB-B9BW
045-HB-LRCBW02 = \\PrintMiddle\045-HB-LRCBW02
045-HB-P2BW = \\PrintMiddle\045-HB-P2BW
045-HB-PrincipleBW = \\PrintMiddle\045-HB-PrincipleBW
045-HB-RmB13BW = \\PrintMiddle\045-HB-RmB13BW
045-HB-RmD2BW = \\PrintMiddle\045-HB-RmD2BW
045-HB-RmD4BW = \\PrintMiddle\045-HB-RmD4BW
045-HB-RmD7BW = \\PrintMiddle\045-HB-RmD7BW
045-HB-V2BW01 = \\PrintMiddle\045-HB-V2BW01
045-HB-V2BW02 = \\PrintMiddle\045-HB-V2BW02
045-RB-RmB15BW = \\PrintMiddle\045-RB-RmB15BW
045-XM-CounXerox = \\PrintMiddle\045-XM-CounXerox
045-XM-OffXerox = \\PrintMiddle\045-XM-OffXerox
Athletic Office Fax = \\PRINT01\Mann MS-Athletic Office-Fax
Band Office Fax = \\PRINT01\Mann MS-Band Office-Fax
Boys Coaches Office B/W = \\PRINT01\Mann-CoachesOff-BW
Counselor Office Fax = \\PRINT01\Mann MS-Counselor Office-Fax
Girls Gym Office = \\PRINT01\Mann MS-Girls Gym Office-Printer
LRC Color = \\PRINT01\Mann MS-LRC-Color Printer
LRC-Printer01 = \\PRINT01\Mann MS-LRC-Printer01
LRC-Printer02 = \\PRINT01\Mann MS-LRC-Printer02
Office = \\PRINT01\Mann MS-Office-Printer01
Office Color = \\PRINT01\Mann MS-Office-Color Printer
Orchestra room = \\PRINT01\Mann MS-Orchestra-Printer
Room A16 = \\PRINT01\Mann MS-Room A16-Printer
Room A17 Fax = \\PRINT01\Mann MS-Room A17-Fax
Room A18 = \\PRINT01\Mann MS-Room A18-Printer
Room A3 = \\PRINT01\Mann MS-Room A3-Printer
Room B3 = \\PRINT01\Mann MS-Room B3-Printer
Room B4 = \\PRINT01\Mann MS-Room B4-Printer01
Room B5 NEW B/W = \\PRINT01\Mann-B5-BW
Room B5 color = \\PRINT01\Mann MS-Room B5-Color Printer
Room B6 = \\PRINT01\Mann MS-Room B6-Printer01
Room B7 = \\PRINT01\Mann MS-Room B7-Printer
Room B7 Color (Print01) = \\PRINT01\Mann MS-Room B7-Color Printer
Room B7 Color (Print01) = \\PRINT01\Mann MS-Room B7-Color Printer
Room B7 Color = \\PRINT01\Mann MS-Room B7-Color Printer
Room C1 = \\PRINT01\Mann MS-Room C1-Printer
Room C1 Xerox = \\PRINT01\Mann MS-Room C1-Xerox
Room D-9 Sys 44 = \\PRINT01\Mann MS-Room D9-sys144 Printer
Workroom Xerox = \\PRINT01\Mann MS-Workroom-Xerox
[047]
047-BM-Rm174Scan = \\PrintMiddle\047-BM-Rm174Scan
047-BM-Rm175Scan = \\PrintMiddle\047-BM-Rm175Scan
047-BM-Rm175Scan = \\PrintMiddle\047-BM-Rm175Scan
047-CC-LFP = \\printmiddle\047-CC-LFP
047-HB-Lab174BW = \\printmiddle\047-HB-Lab174BW
047-HB-Mile136BW = \\PrintMiddle\047-HB-Mile136BW
047-HB-Rm137BW = \\printmiddle\047-HB-Rm137BW
047-HB-Rm138BW = \\printmiddle\047-HB-Rm138BW
047-HB-Rm139BW = \\printmiddle\047-HB-Rm139BW
047-HB-Rm140BW = \\printmiddle\047-HB-Rm140BW
047-HB-Rm142BW = \\printmiddle\047-HB-Rm142BW
047-HB-Rm150BW = \\printmiddle\047-HB-Rm150BW
047-HB-Rm169BW = \\printmiddle\047-HB-Rm169BW
047-HB-Rm170BW = \\printmiddle\047-HB-Rm170BW
047-HB-Rm170BW2 = \\printmiddle\047-HB-Rm170BW2
047-HB-Rm172BW = \\printmiddle\047-HB-Rm172BW
047-HB-Rm199BW = \\PrintMiddle\047-HB-Rm199BW
047-RB-Rm120BW = \\printmiddle\047-RB-Rm120BW
047-RB-Rm175BW = \\PrintMiddle\047-RB-Rm175BW
047-XM-CounsXrx = \\printmiddle\047-XM-CounsXrx
047-XM-OffXerox = \\printmiddle\047-XM-OffXerox
047-XM-Rm111Xrx = \\printmiddle\047-XM-Rm111Xrx
Boys Gym Office = \\PRINT01\Clack MS-Boys Gym Office-Printer
Girls Gym Office = \\PRINT01\Clack MS-Girls Gym Office-Printer
LRC = \\PRINT01\Clack MS-LRC-Printer01
LRC Mile04 = \\PRINT01\Clack Ms-LRC-Mile04 Printer
LRC Mile09 = \\PRINT01\Clack Ms-LRC-Mile09 Printer
LRC Mile10 = \\PRINT01\Clack Ms-LRC-Mile10 Printer
LRC-Color = \\PRINT01\Clack MS-LRC-Color Printer
Office Clerical = \\PRINT01\Clack MS-Office-Clerical Printer
Office Color = \\PRINT01\Clack MS-Office-Printer
Rm 168 BW = \\PRINT01\Clack-Rm 168-BW
Room 100 = \\PRINT01\Clack Ms-Room 100-Printer
Room 111 = \\PRINT01\Clack MS-Room 111-Printer
Room 113 p1 = \\PRINT01\Clack MS-Room 113-Printer01
Room 113 p2 = \\PRINT01\Clack MS-Room 113-Printer02
Room 120 = \\PRINT01\Clack Ms-Room 120-Printer
Room 137 COLOR Printer = \\Print01\Clack MS-Room 137-Color Printer
Room 164 = \\PRINT01\Clack Ms-Room 164-Printer
Room 172 = \\PRINT01\Clack Ms-Room 172-Printer
Room 174 p1 = \\PRINT01\Clack Ms-Room 174-Printer01
Room 174 p2 = \\PRINT01\Clack Ms-Room 174-Printer02
Room 175 = \\PRINT01\Clack Ms-Room 175-Printer
Room 175 Color = \\PRINT01\Clack Ms-Room 175-Color Printer
Room 176-180 lab = \\PRINT01\Clack MS-Room 176-180 Printer
Room 200-180 lab = \\PRINT01\Clack MS-Room 200-180 Printer
Room 201 = \\PRINT01\Clack MS-Room 201-Printer
Room 207 RM Lab = \\PRINT01\Clack MS-Room 207-RM Printer
Room 208 RM Lab = \\PRINT01\Clack MS-Room 208-RM Printer
Room 209 = \\PRINT01\Clack MS-Room 209-Printer
Room 209 RM Lab = \\PRINT01\Clack MS-Room 209-RM Printer
Room 219-RM lab = \\PRINT01\Clack MS-Room 219-RM Printer
Teacher Workroom 138 = \\PRINT01\Clack MS-Room 138-TW-Printer
Teacher Workroom 150 = \\PRINT01\Clack MS-Room 150-TW-Printer
Teacher Workroom 162 = \\PRINT01\Clack MS-Room 162-TW-Printer
Workroom Xerox = \\PRINT01\Clack Ms-Workroom-Xerox
[048]
048-BM-ChoirScan = \\printmiddle\048-BM-ChoirScan
048-BM-CounFax = \\printmiddle\048-BM-CounFax
048-BM-Rm401Scan = \\PrintMiddle\048-BM-Rm401Scan
048-BM-Rm404Scan = \\PrintMiddle\048-BM-Rm404Scan
048-BM-Rm627MFC = \\PrintMiddle\048-BM-Rm627MFC
048-BM-Rm628Scan = \\PrintMiddle\048-BM-Rm628Scan
048-CC-LFP = \\printmiddle\048-CC-LFP
048-HB-GirlCoachBW = \\printmiddle\048-HB-GirlCoachBW
048-HB-Mile134BW = \\PrintMiddle\048-HB-Mile134BW
048-HB-Mile135BW = \\PrintMiddle\048-HB-Mile135BW
048-HB-Rm104BW = \\printmiddle\048-HB-Rm104BW
048-HB-Rm105BW = \\printmiddle\048-HB-Rm105BW
048-HB-Rm108BW = \\printmiddle\048-HB-Rm108BW
048-HB-Rm109BW = \\printmiddle\048-HB-Rm109BW
048-HB-Rm201BW = \\PrintMiddle\048-HB-Rm201BW
048-HB-Rm401BW = \\printmiddle\048-HB-Rm401BW
048-HB-Rm428BW = \\printmiddle\048-HB-Rm428BW
048-HB-Rm629BW = \\printmiddle\048-HB-Rm629BW
048-HC-LRCColor = \\printmiddle\048-HC-LRCColor
048-RB-Rm519BW01 = \\printmiddle\048-RB-Rm519BW01
048-RB-Rm519BW02 = \\printmiddle\048-RB-Rm519BW02
048-RB-Rm519BW03 = \\printmiddle\048-RB-Rm519BW03
048-RB-Rm614BW = \\PrintMiddle\048-RB-Rm614BW
048-RC-Rm201Color = \\PrintMiddle\048-RC-Rm201Color
COW Printer = \\PRINT01\Craig MS-COW-Printer
Counselor Office = \\PRINT01\Craig MS-Counselor-Office Printer
Counselor Office Color = \\PRINT01\Craig MS-Counselor-Color Printer
Counselor Printer1 = \\PRINT01\Craig MS-Counselor-Printer01
Counselor Printer2 = \\PRINT01\Craig MS-Counselor-Printer02
Craig MS-Room 307-Printer = \\print01\Craig MS-Room 307-Printer
Gym Office = \\PRINT01\Craig MS-Gym Office-Printer
LRC = \\PRINT01\Craig MS-LRC-Printer
LRC Color = \\print01\Craig MS-LRC-Color Printer
Main Office = \\PRINT01\Craig MS-Main Office-Printer
Office Color = \\PRINT01\Craig MS-Office-Color Printer
Office Fax = \\PRINT01\Craig MS-Office-Fax
Office Fax02 = \\PRINT01\Craig MS-Office-Fax02
Office Plotter = \\PRINT01\Craig MS-Office-Plotter
Principal = \\PRINT01\Craig MS-Principal-Printer
Room 101 = \\PRINT01\Craig MS-Room 101-Printer01
Room 117 = \\PRINT01\Craig MS-Room 117-Printer
Room 201-BW = \\PRINT01\Craig MS-Room 201-Printer02
Room 201-Color = \\PRINT01\Craig MS-Room 201-Color Printer
Room 210 = \\PRINT01\Craig-Rm 210-BW
Room 218 = \\PRINT01\Craig MS-Room 218-Printer
Room 304 = \\PRINT01\Craig MS-Room 304-Printer
Room 305 = \\PRINT01\Craig MS-Room 305-Printer
Room 306 Read 180 = \\PRINT01\Craig MS-Room 306-Read 180Printer
Room 312 = \\PRINT01\Craig-Rm 312-BW
Room 401 = \\PRINT01\Craig MS-Room 401-Printer01
Room 414 = \\PRINT01\Craig MS-Room 414-Printer
Room 428 = \\PRINT01\Craig MS-Room 428-Printer
Room 429 Counselor Fax = \\PRINT01\Craig MS-Room 429-Fax
Room 519 Printer 1 = \\PRINT01\Craig MS-Room 519-Printer01
Room 519 Printer 2 = \\PRINT01\Craig MS-Room 519-Printer02
Room 519 Printer 3 = \\PRINT01\Craig MS-Room 519-Printer03
Room 627 = \\PRINT01\Craig MS-Room 627-Printer
Room 628 Printer 1 = \\PRINT01\Craig MS-Room 628-Printer01
Room 628 Printer 2 = \\PRINT01\Craig MS-Room 628-Printer02
Room 629 = \\PRINT01\Craig MS-Room 629-Printer
Room 630 = \\PRINT01\Craig MS-Room 630-Printer
Room 643 = \\PRINT01\Craig MS-Room 643-Printer
Room 707 = \\PRINT01\Craig MS-Room 707-Printer
Xerox 01 = \\PRINT01\Craig MS-Workroom-Xerox01
Xerox 02 = \\PRINT01\Craig MS-Workroom-Xerox02
[080]
080-MC-MagnetColor = \\Printelem\080-MC-MagnetColor
Room 152 Color = \\PRINT01\McMurry-Room 152-Color Printer
[088]
No Printers Available=None
[101]
101-XM-WorkroomXerox = \\printadmin\101-XM-WorkroomXerox
Alta Vista-LAB Color Printer = \\Print01\Alta Vista-Room Lab-Color Printer
Alta Vista-Room 24-Color Printer(Not Lab) = \\print01\Alta Vista-Room 24-Color Printer
Alta Vista-Room 24-Xerox = \\print01\Alta Vista-Room 24-Xerox
Alta Vista-Workroom-Color Printer = \\print01\Alta Vista-Workroom-Color Printer
[102]
102-BM-ARDMFC = \\printelem\102-BM-ARDMFC
102-HB-LRCBW = \\Printelem\102-HB-LRCBW
102-HB-Rm 39 Lab2 = \\Printelem\102-HB-Rm 39 Lab2
102-HC-CounColor = \\printelem\102-HC-CounColor
102-HC-KinderColor = \\printelem\102-HC-KinderColor
102-HC-TechLabColor = \\printelem\102-HC-TechLabColor
Counselor's Hall Color = \\PRINT01\Austin El-Counselors Hall-Color Printer
Gym Color = \\PRINT01\Austin EL-GYM Color
Gym Office = \\PRINT01\Austin El-Gym Office-Printer
Kindergarten Color = \\PRINT01\Austin El-Kindergarten-Color Printer
LRC = \\PRINT01\Austin El-LRC-Printer
Lab = \\PRINT01\Austin El-LAB-Printer01
Lab-Color Printer = \\Print01\Austin El-Lab-Color Printer
Office Xerox = \\PRINT01\Austin El-Office-Xerox
Room 13 Fax = \\PRINT01\Austin El-Room 13-Fax
Room 34 Teacher Printer = \\PRINT01\Austin El-Room 34-Teacher Printer
Room 45 = \\PRINT01\Austin El-Room 45-Printer
Workroom Xerox01 = \\PRINT01\Austin El-Workroom-Xerox01
Workroom Xerox02 = \\PRINT01\Austin El-Workroom-Xerox02
[103]
103-BM-ICMFC = \\PrintElem\103-BM-ICMFC
103-HB-Rm1BW = \\printElem\103-HB-Rm1BW
103-HB-Rm23Lab = \\PrintElem\103-HB-Rm23Lab
103-HC-OfficeColor = \\printelem\103-HC-OfficeColor
103-HC-TechLabColor = \\printelem\103-HC-TechLabColor
103-XM-OffXrx = \\PrintElem\103-XM-OffXrx
103-XM-Rm22XrX = \\PrintElem\103-XM-Rm22XrX
1st Grade Hall Color = \\PRINT01\Bonham El-1st Grade Hall-Color Printer
Instructional Coordinator Fax = \\PRINT01\Bonham El-Instructional Coordinator Office-Fax
LRC = \\PRINT01\Bonham El-LRC-Printer
Lab = \\PRINT01\Bonham El-Lab-Printer01
Mile Carts 28-29 = \\PRINT01\Bonham El-Mile Carts 28-29-Printer
Mile Carts 92-93 = \\PRINT01\Bonham-MILE92-93-BW
Office Xerox = \\PRINT01\Bonham El-Office-Xerox
Outter Counselor Color Printer = \\PRINT01\Bonham El-Outter Counselor-Color Printer
Port 3 RM Lab = \\PRINT01\Bonham El-Portable 3-RM Lab-Printer
Port 3 RM Lab-Color = \\PRINT01\Bonham El-Portable 3-RM Lab-Color Printer
Port 7 Color = \\PRINT01\Bonham El-Portable 7-Color Printer
Portable 2 BW = \\PRINT01\Bonham-P2-BW
Portable 8 = \\PRINT01\Bonham El-Portable 8
Room 14 = \\PRINT01\Bonham El-Room 14-Printer
Room 18 = \\PRINT01\Bonham El-Room 18-Printer
Room 22 Color = \\PRINT01\Bonham El-Room 22-Color Printer
Room 29 = \\PRINT01\Bonham El-Room 29-Printer
Room 5 = \\PRINT01\Bonham El-Room 5-Printer
Workroom Color = \\PRINT01\Bonham El-Workroom-Color Printer
Workroom Xerox = \\PRINT01\Bonham El-Workroom-Xerox
[104]
104-CC-LFP = \\PrintElem\104-CC-LFP
104-HC-OfficeColor = \\PrintElem\104-HC-OfficeColor
104-HC-TechLabBW = \\printelem\104-HC-TechLabBW
104-HC-TechLabColor = \\printelem\104-HC-TechLabColor
104-HC-WorkroomColor = \\PrintElem\104-HC-WorkroomColor
104-XM-OffXerox = \\PrintElem\104-XM-OffXerox
Annex Workroom Xerox = \\PRINT01\Bowie El-Annex Workroom-Xerox
Gym = \\PRINT01\Bowie El-Gym-Printer
Kindergarten Color = \\PRINT01\Bowie El-Kindergarten-Color Printer
LRC #2 = \\PRINT01\Bowie El-LRC-Printer2
LRC = \\PRINT01\Bowie El-LRC-Printer
LRC Color2 = \\PRINT01\Bowie El-LRC-Color Printer2
Lab = \\PRINT01\Bowie El-Lab-Printer01
Main Workroom Color = \\PRINT01\Bowie El-Main WkRm-Color Printer
Mile Carts 30-31 = \\PRINT01\Bowie El-Mile Carts 30-31-Printer
Mile05 = \\PRINT01\Bowie El-LRC-Mile05-Printer
Office Color = \\PRINT01\Bowie El-Office-Color Printer
Office Fax = \\PRINT01\Bowie El-Office-Fax
Office Xerox = \\PRINT01\Bowie El-Office-Xerox
RM Lab B-W = \\PRINT01\Bowie El-RM Lab-Printer
RM Lab Color = \\PRINT01\Bowie El-RM Lab-Color Printer
Room 13A = \\PRINT01\Bowie El-Room 13A-Printer
SpEd Office = \\PRINT01\Bowie El-SpEd Office-Printer
TI Lab = \\PRINT01\Bowie El-TI Lab-Printer
Teacher Workroom Color = \\PRINT01\Bowie El-Teacher Workroom-Color Printer
Teacher Workroom Xerox = \\PRINT01\Bowie El-Teacher Workroom-Xerox
Workroom 106 = \\PRINT01\Bowie El-WkRm 106-Printer
[107]
107-HC-ParWkRmColor = \\printelem\107-HC-ParWkRmColor
107-HC-WrkRmColor = \\printelem\107-HC-WrkRmColor
107-XM-NewWingXerox = \\printelem\107-XM-NewWingXerox
107-XM-WrkrmXerox = \\printelem\107-XM-WrkrmXerox
Crockett-Directors Office-New Color = \\print01\Crockett-Directors Office-New Color
Crockett-Health Office-Color = \\Print01\Crockett-Health Office-Color
Crockett-Office-New Color = \\print01\Crockett-Office-New Color
Family Advocate = \\PRINT01\Crockett Early Head Start-Family Advocates-Printer
Office Color = \\PRINT01\Crockett Early Head Start-Office-Color Printer
SAMS Room Color = \\PRINT01\Crockett Early Head Start-SAMS Room-Color Printer
Teacher printer Cafeteria = \\PRINT01\Crockett Early Head Start-Teacher Printer
[108]
108-BM-MainFax = \\Printelem\108-BM-MainFax
108-HB-Hall2-3BW = \\Printelem\108-HB-Hall2-3BW
108-HB-Hall4-5BW = \\Printelem\108-HB-Hall4-5BW
108-HB-HallK-1BW = \\Printelem\108-HB-HallK-1BW
108-HB-Rm12BW = \\printelem\108-HB-Rm12BW
108-HC-Hall4-5Color = \\Printelem\108-HC-Hall4-5Color
108-HC-HallK-1Color = \\Printelem\108-HC-HallK-1Color
108-HC-PrincipleColor = \\Printelem\108-HC-PrincipleColor
108-HC-TechLabColor = \\Printelem\108-HC-TechLabColor
108-XM-OffXerox = \\printelem\108-XM-OffXerox
Conference Room = \\PRINT01\Dyess El-Conference Room-Printer
LRC = \\PRINT01\Dyess El-LRC-Printer
Lab = \\PRINT01\Dyess El-Lab-Printer01
Lab-Color Printer = \\PRINT01\Dyess El-Lab-Color Printer
Mile11 Color = \\PRINT01\Dyess El-LRC-Mile11 Color Printer
Office Color Printer = \\PRINT01\Dyess El-Office-Color Printer
Office Printer and Fax = \\PRINT01\Dyess El-Office-Fax-Printer
Room 27 RM Printer = \\PRINT01\Dyess El-Room 27-RM Printer
Room 28 RM printer = \\PRINT01\Dyess El-Room 28-RM Printer
VP Office = \\PRINT01\Dyess El-VP Office-Fax
Workroom Xerox01 = \\PRINT01\Dyess El-Workroom 1-Xerox01
Workroom Xerox02 = \\PRINT01\Dyess El-Workroom 1-Xerox02
[112]
100 Hall North = \\PRINT01\Jackson El-100 Hall North-Printer
100 Hall South = \\PRINT01\Jackson El-100 Hall South-Printer
112-HB-IStaLabBW = \\printelem\112-HB-IStaLabBW
112-HB-LRCBW = \\printelem\112-HB-LRCBW
112-HB-SouthHall100BW = \\printelem\112-HB-SouthHall100BW
112-HC-PrintRmColor = \\printelem\112-HC-PrintRmColor
112-HC-TechLabColor = \\printelem\112-HC-TechLabColor
112-HC-WorkRmColor = \\printelem\112-HC-WorkRmColor
112-RB-SouthHall100BW = \\printelem\112-RB-SouthHall100BW
112-XM-OffXerox = \\printelem\112-XM-OffXerox
200 Hall North = \\PRINT01\Jackson El-200 Hall North-Printer
200 Hall South = \\PRINT01\Jackson El-200 Hall South-Printer
400 Hall = \\PRINT01\Jackson El-400 Hall-Printer
Conference Room = \\PRINT01\Jackson El-Conference Room-Printer
Counselor = \\PRINT01\Jackson El-Counselor-Printer
LRC = \\PRINT01\Jackson El-LRC-Printer
Lab = \\PRINT01\Jackson El-Lab-Printer01
Lab Color = \\PRINT01\Jackson El-Lab-Color Printer
Office Xerox = \\PRINT01\Jackson El-Office-Xerox
Print Room Color = \\PRINT01\Jackson El-Print Room-Color Printer
Print Room Xerox = \\PRINT01\Jackson El-Print Room-Xerox
Teachers Workroom = \\PRINT01\Jackson El-Teacher Workroom-Color Printer
Workroom Xerox = \\PRINT01\Jackson El-Workroom-Xerox
[113]
113-HB-Bldg300BW = \\printelem\113-HB-Bldg300BW
113-HB-P5Lab = \\printelem\113-HB-P5Lab
113-HC-TechLabColor = \\printelem\113-HC-TechLabColor
113-XM-OffXerox = \\printelem\113-XM-OffXerox
113-XM-WrkrmXerox = \\printelem\113-XM-WrkrmXerox
Gym = \\PRINT01\Johnston El-Gym-Printer
LRC = \\PRINT01\Johnston El-LRC-Printer
LRC Printer 2 = \\PRINT01\Johnston El-LRC-Printer2
Lab = \\PRINT01\Johnston El-LAB-Printer01
Lab-Color Printer = \\PRINT01\Johnston El-Lab-Color Printer
Office = \\PRINT01\Johnston El-Office-Printer
Office Color = \\PRINT01\Johnston El-Office-Color Printer
POD 1 NEW Color Printer = \\PRINT01\Johnston-Pod1-WkRm-Color
Pod1 Workroom Color = \\PRINT01\Johnston El-Pod1 Workroom-Color Printer
Pod2 Workroom = \\PRINT01\Johnston El-Pod2 Workroom-Printer
Pod2 Workroom Color = \\PRINT01\Johnston El-Pod2 Workroom-Color Printer
Pod3 Workroom = \\PRINT01\Johnston El-Pod3 WOrkroom-Printer
Portable 1 = \\PRINT01\Johnston El-Portable 1-Printer
Portable 2 = \\PRINT01\Johnston El-Speech Portable 2-Printer
Portable 6 = \\PRINT01\Johnston El-Portable 6-Printer
Room A1 = \\PRINT01\Johnston El-Room A1-Printer
Room A10 = \\PRINT01\Johnston El-Room A10-Fax
Workroom Xerox = \\PRINT01\Johnston El-Workroom-Xerox
[116]
116-BM-ICScan = \\PrintElem\116-BM-ICScan
116-HB-ConfRmBW = \\printelem\116-HB-ConfRmBW
116-HB-Hall100BW = \\printelem\116-HB-Hall100BW
116-HB-Hall200BW = \\printelem\116-HB-Hall200BW
116-HB-Hall300BW = \\printelem\116-HB-Hall300BW
116-HB-Hall400BW = \\printelem\116-HB-Hall400BW
116-HB-LRCBW = \\printelem\116-HB-LRCBW
116-HB-Rm618BW = \\printelem\116-HB-Rm618BW
116-HB-TechLabBW = \\printelem\116-HB-TechLabBW
116-HB-TechLabColor = \\printelem\116-HB-TechLabColor
116-RB-Port2BW = \\printelem\116-RB-Port2BW
116-XM-OffXerox = \\Printelem\116-XM-OffXerox
116-XM-WrkRmXrX02 = \\PrintElem\116-XM-WrkRmXrX02
1st Grade Printer = \\PRINT01\Lee El-1st Grade-Printer
2nd Grade Printer = \\PRINT01\Lee El-2nd Grade-Printer
3rd Grade Printer = \\PRINT01\Lee El-3rd Grade-Printer
4th Grade Printer = \\PRINT01\Lee El-4th Grade-Printer
5th Grade Printer = \\PRINT01\Lee El-5th Grade-Printer
Compass Lab = \\PRINT01\Lee El-Compass Lab-Printer
Counselor = \\PRINT01\Lee El-Counselor-Printer
Kindergarten Printer = \\PRINT01\Lee El-Kindergarten-Printer
LRC = \\PRINT01\Lee El-LRC-Printer
Lab = \\PRINT01\Lee El-Lab-Printer01
Lee El-Lab-Color Printer = \\Print01\Lee El-Lab-Color Printer
Mile Cart 32 = \\PRINT01\Lee El-Mile Cart 32-Printer
Mile07 = \\PRINT01\Lee El-LRC-Mile07 Printer
Office = \\PRINT01\Lee El-Office-Printer
Office Color Printer = \\PRINT01\Lee El-Office-Color Printer
Room 29 Color = \\PRINT01\Lee El-Room 29-Color Printer
Room 325 Color Printer = \\PRINT01\Lee El-Room 325-Color Printer
Room 622 = \\PRINT01\Lee El-Room 622-Printer
Room 625 Color Printer = \\PRINT01\Lee El-Room 325-Color Printer
Special Ed 02 = \\PRINT01\Lee El-Special Ed-Printer02
Special Ed = \\PRINT01\Lee El-Special Ed-Printer
TI  Lab Color = \\PRINT01\Lee El-TI Lab-Color Printer
TI Lab = \\PRINT01\Lee El-TI Lab-Printer
TI Lab-Color Printer = \\print01\Lee El-TI Lab-Color Printer
Workroom Color = \\PRINT01\Lee El-Workroom-Color Printer
Xerox = \\PRINT01\Lee El-Workroom-Xerox
[117]
117-BM-PortEScan = \\printelem\117-BM-PortEScan
117-HC-HallwayCP = \\printelem\117-HC-HallwayCP
117-HC-NewWing02CP = \\printelem\117-HC-NewWing02CP
117-HC-OfficeCP = \\printelem\117-HC-OfficeCP
117-XM-OffXerox = \\printelem\117-XM-OffXerox
117-XM-WrkrmXerox = \\printelem\117-XM-WrkrmXerox
Clinic Fax = \\PRINT01\Locust Early Childhood Center-Clinic-Fax
Education Coordinator Color = \\PRINT01\Locust Early Childhood Center-Ed. Coord.-Color Printer
Fiscal Manager Fax = \\PRINT01\Locust Early Childhood Center-Fiscal Mgr-Fax
Hallway Color = \\PRINT01\Locust Early Childhood Center-Hallway-Color Printer
New Wing North Nook Color = \\PRINT01\Locust Early Childhood Center-New Wing-Color Printer01
New Wing South Nook Color = \\PRINT01\Locust Early Childhood Center-New Wing-Color Printer02
Office Color = \\PRINT01\Locust Early Childhood Center-Office-Color Printer
Port C ARD Printer = \\PRINT01\Locust Early Childhood Center-Port C ARD-Printer
Port C ARD Scanner = \\PRINT01\Locust Early Childhood Center-Port C ARD-Scanner
Room 10 = \\PRINT01\Locust Early Childhood Center-Room 10-Printer
Room 10 Color = \\PRINT01\Locust Early Childhood Center-Room 10-Color Printer
Room 7 Fax = \\PRINT01\Locust Early Childhood Center-Room 7-Fax
Workroom = \\PRINT01\Locust Early Childhood Center-Workroom-Printer
[118]
118-HC-OffColor = \\printelem\118-HC-OffColor
118-HC-TechLabColor = \\printelem\118-HC-TechLabColor
118-XM-OffXrX = \\Printelem\118-XM-OffXrX
118-XM-Rm12aXrX = \\Printelem\118-XM-Rm12aXrX
ARD Room = \\PRINT01\Long El-ARD-Printer
Building 2 Workroom = \\PRINT01\Long El-Building 2 Workroom-Printer
Building 3 Workroom Color(DONOTUSE) = \\PRINT01\Long El-Building 3 Workroom-Color Printer
Building 3 Workroom Color2(NEW) = \\PRINT01\Long El-Building 3 Workroom-Color Printer2
Building 3 Workroom Xerox = \\PRINT01\Long El-Building 3 Workroom-Xerox
Counselor's Office = \\PRINT01\Long El-Counselor Office-Printer
Gym = \\PRINT01\Long El-Gym-Printer
LRC = \\PRINT01\Long El-LRC-Printer01
Lab 25 BW = \\PRINT01\Long El-Lab-Printer01
Long El-LRC BW = \\print01\Long El-LRC BW
Office = \\PRINT01\Long El-Office-Printer
Office Color = \\PRINT01\Long El-Office-Color Printer
Room 13A = \\PRINT01\Long El-Room 13A-Fax
Room 23A = \\PRINT01\Long El-Room 23A-Printer
TI Lab = \\PRINT01\Long El-TI Lab-Printer
[120]
120-BM-P4Scan = \\printelem\120-BM-P4Scan
120-HB-LRCBW = \\printelem\120-HB-LRCBW
120-HB-Rm26Lab = \\printelem\120-HB-Rm26Lab
120-HC-TechLabBW = \\printelem\120-HC-TechLabBW
120-HC-TechLabColor = \\printelem\120-HC-TechLabColor
120-RB-Bldg1BW = \\printelem\120-RB-Bldg1BW
120-RB-Rm36BW = \\printelem\120-RB-Rm36BW
ALPS Lab = \\PRINT01\Reagan El-ALPS Lab-Printer
Building 1 = \\PRINT01\Reagan El-Building 1-Printer
Building 2 = \\PRINT01\Reagan El-Building 2-Printer
Building 4 = \\PRINT01\Reagan El-Building 4-Printer
Building 4 Color = \\PRINT01\Reagan El-Building 4-Color Printer
Conference Room = \\PRINT01\Reagan El-Conference Room-Printer
Gym = \\PRINT01\Reagan El-Gym-Printer
LRC = \\PRINT01\Reagan El-LRC-Printer
Lab = \\PRINT01\Reagan El-Lab-Printer01
Mile Cart 37 = \\PRINT01\Reagan El-Mile Cart 37-Printer
Office = \\PRINT01\Reagan El-Office-Fax
Office Xerox = \\PRINT01\Reagan El-Office-Xerox
RM Bus Printer = \\PRINT01\Reagan El-RM Bus-Printer
Room 8 Color Printer = \\PRINT01\Reagan El-Room 8-Color Printer
TI Lab = \\PRINT01\Reagan El-TI Lab-Printer
Workroom Color = \\PRINT01\Reagan El-Workroom-Color Printer
Workroom Xerox01 = \\PRINT01\Reagan El-Workroom-Xerox01
Workroom Xerox02 = \\PRINT01\Reagan El-Workroom-Xerox02
[121]
121-HB-Lab30BW = \\printelem\121-HB-Lab30BW
121-HB-P1Lab = \\Printelem\121-HB-P1Lab
121-HB-P7Lab = \\Printelem\121-HB-P7Lab
121-HB-Rm28BW = \\Printelem\121-HB-Rm28BW
121-HC-LRCColor = \\printelem\121-HC-LRCColor
121-HC-P5Color = \\Printelem\121-HC-P5Color
121-HC-WkrmColor = \\Printelem\121-HC-WkrmColor
121-XM-OffXerox = \\Printelem\121-XM-OffXerox
1st Grade Hall 02 = \\PRINT01\Taylor El-1st Grade Hall-Printer02
3rd Grade Closet = \\PRINT01\Taylor El-3rd Grade Closet-Printer
4th Grade Closet = \\PRINT01\Taylor El-4th Grade Closet-Printer
Counselor = \\PRINT01\Taylor El-Counselor-Printer
Counselor02 = \\PRINT01\Taylor El-Counselor-Printer02
Discovery Room = \\PRINT01\Taylor El-Discovery Room-Printer
Gym = \\PRINT01\Taylor El-Gym-Printer
LRC = \\PRINT01\Taylor El-LRC-Printer
LRC B/W = \\PRINT01\Taylor-LRC-B-W
Lab = \\PRINT01\Taylor El-Lab-Printer01
Lounge = \\PRINT01\Taylor El-Lounge-Printer
Mile Carts = \\PRINT01\Taylor El-LRC-Mile06 Printer
New Lab Color Printer = \\PRINT01\Taylor-Lab-CP
OLD LAB COLOR-REMOVE = \\PRINT01\Taylor El-Lab-Color Printer
Office = \\PRINT01\Taylor El-Office-Printer
Office Fax = \\PRINT01\Taylor El-Office-Fax
Portable 1 = \\PRINT01\Taylor EL-Portable 1-Printer
Portable 29 = \\PRINT01\Taylor El-Portable 29-Printer
Taylor EL-LRC-Color Printer = \\Print01\Taylor EL-LRC-Color Printer
WorkRoom Xerox = \\PRINT01\Taylor El-Workroom-Xerox
Workroom Color = \\PRINT01\Taylor El-Workroom-Color Printer
[125]
125-HC-NewWingCP = \\printelem\125-HC-NewWingCP
125-HC-OfficeCP = \\printelem\125-HC-OfficeCP
125-XM-OffXrx = \\printelem\125-XM-OffXrx
125-XM-Rm48Xrx = \\printelem\125-XM-Rm48Xrx
125-XM-WrkrmXerox = \\printelem\125-XM-WrkrmXerox
Clinic Scanner-Printer = \\PRINT01\Woodson Early Childhood Center-Clinic-Scanner
Family Advocate Color = \\PRINT01\Woodson Early Head Start-Family Advocate-Color Printer
Front Office = \\PRINT01\Woodson Early Childhood Center-Office-Printer
Front Office = \\PRINT01\Woodson Early Head Start-Front Office-Printer
Front Office Color = \\PRINT01\Woodson Early Childhood Center-Office-Color Printer
Front Office Color = \\PRINT01\Woodson Early Head Start-Front Office-Color Printer
LRC Black and White = \\PRINT01\Woodson Early Childhood Center-LRC-Printer
LRC Color = \\PRINT01\Woodson Early Childhood Center-LRC-Color Printer
Main Hall Color(NEW) = \\PRINT01\Woodson Early Childhood Center-Main Hall-Color Printer2
Main Hall Color(REMOVE) = \\PRINT01\Woodson Early Childhood Center-Main Hall-Color Printer
New Wing Color = \\PRINT01\Woodson Early Childhood Center-New Wing-Color Printer
Nurses MFC = \\PRINT01\WoodsonECC-Nurse-MFC
Resource Room = \\PRINT01\Woodson Early Head Start-Resource Room-Color Printer
Room 25 Color = \\PRINT01\Woodson Early Childhood Center-Room 25-Color Printer
Room 48 = \\PRINT01\Woodson Early Childhood Center-Room 48-Printer
Speech = \\PRINT01\Woodson Early Childhood Center-Speech-Printer
Speech Color = \\PRINT01\Woodson Early Childhood Center-Speech-Color Printer
Workroom Color = \\PRINT01\Woodson Early Childhood Center-Workroom-Color Printer
[131]
Office Color = \\PRINT01\Planetarium-Office-Color Printer
Office Fax = \\PRINT01\Planetarium-Office-Fax
[138]
138-HC-FoyerCP = \\PrintElem\138-HC-FoyerCP
138-HC-FrntOffCP = \\PrintElem\138-HC-FrntOffCP
138-HC-ResRmCP = \\PrintElem\138-HC-ResRmCP
138-RC-FamAdvColor = \\PrintElem\138-RC-FamAdvColor
138-XM-FamAdvXerox = \\Printelem\138-XM-FamAdvXerox
138-XM-FoyerXrX = \\Printelem\138-XM-FoyerXrX
[150]
101C = \\PRINT01\Ward El-Room 101C-Printer
150-HB-Hall A = \\printelem\150-HB-Hall A
150-HB-Hall B = \\printelem\150-HB-Hall B
150-HB-Hall C = \\printelem\150-HB-Hall C
150-HB-LRCBW = \\PrintElem\150-HB-LRCBW
150-HB-TechLabBW = \\printelem\150-HB-TechLabBW
150-HC-Hall C Color = \\printelem\150-HC-Hall C Color
150-HC-OfficeColor = \\printelem\150-HC-OfficeColor
150-HC-TechLabColor = \\printelem\150-HC-TechLabColor
150-RC-OfficeColor = \\printelem\150-RC-OfficeColor
150-XM-OffXerox = \\PrintElem\150-XM-OffXerox
A-11 RM Room = \\PRINT01\Ward El-Room A11-RM Printer
B-4 RM Room = \\PRINT01\Ward El-Room B4-RM Printer
LRC = \\PRINT01\Ward El-LRC-Printer
Lab = \\PRINT01\Ward El-Lab-Printer
Office = \\PRINT01\Ward El-Office-Printer
Ward El-Lab-Color Printer02 = \\Print01\Ward El-Lab-Color Printer02
Workroom Xerox 01 = \\PRINT01\Ward El-Workroom-Xerox01
Workroom Xerox 02 = \\PRINT01\Ward El-Workroom-Xerox02
[151]
151-HB-HallABW = \\printelem\151-HB-HallABW
151-HB-HallBBW = \\printelem\151-HB-HallBBW
151-HB-HallCBW = \\printelem\151-HB-HallCBW
151-HB-LRCBW = \\printelem\151-HB-LRCBW
151-HB-Rm105Lab = \\printelem\151-HB-Rm105Lab
151-HB-Rm118Lab = \\printelem\151-HB-Rm118Lab
151-HC-HallCColor = \\printelem\151-HC-HallCColor
151-HC-Rm118Color = \\printelem\151-HC-Rm118Color
151-XM-OffXerox = \\printelem\151-XM-OffXerox
ADD NEW 105 Lab Color HP = \\PRINT01\Thomas-105-HP Color
LRC = \\PRINT01\Thomas El-LRC-Printer
LabPrinter01 105 B/W = \\PRINT01\Thomas El-Lab-Printer01
Office Color = \\PRINT01\Thomas El-Office-Color Printer
Office Fax = \\PRINT01\Thomas El-Office-Fax
REMOVE OLD 105 Color Lab = \\PRINT01\Thomas El-Lab-Color Printer
RM Lab 2 room 131 = \\PRINT01\Thomas EL-RM LAB-Printer
RM Portable = \\PRINT01\Thomas EL-RM Portable-Printer
Room 101C = \\PRINT01\Thomas El-Room 101C-Printer
Workroom Xerox01 = \\PRINT01\Thomas El-Workroom-Xerox01
Workroom Xerox02 = \\PRINT01\Thomas El-Workroom-Xerox02
[152]
152-BM-ICMFC = \\Printelem\152-BM-ICMFC
152-HB-Rm300Lab2 = \\Printelem\152-HB-Rm300Lab2
152-HC-TechLabColor = \\printelem\152-HC-TechLabColor
152-RB-ARDRmBW = \\printelem\152-RB-ARDRmBW
152-XM-WrkrmXrx2 = \\Printelem\152-XM-WrkrmXrx2
Compass Lab = \\PRINT01\Ortiz El-Compass Lab-Printer01
Hall 2-4 = \\PRINT01\Ortiz El-Hall 2-4-Printer
Hall 3-5 = \\PRINT01\Ortiz El-Hall 3-5-Printer
Hall 3-5 Printer B = \\PRINT01\Ortiz El-Hall 3-5-Printer B
Hall K-1 = \\PRINT01\Ortiz El-Hall K-1-Printer
Hall k-1 Color Printer = \\PRINT01\Ortiz El-Hall K-1-Color Printer
Hall k-1 Printer B = \\PRINT01\Ortiz El-Hall K-1-Printer B
LRC = \\PRINT01\Ortiz El-LRC-Printer
Lab = \\PRINT01\Ortiz El-Lab-Printer01
Lab-Color Printer = \\PRINT01\Ortiz El-Lab-Color Printer
Mile Carts 33-34 = \\PRINT01\Ortiz El-Mile Carts 33-34-Printer
Mile Carts 35-36 = \\PRINT01\Ortiz El-Mile Carts 35-36-Printer
Office Color Printer = \\PRINT01\Ortiz El-Office-Color Printer
Office Fax = \\PRINT01\Ortiz El-Office-Fax
Office Printer 1 = \\PRINT01\Ortiz El-Office-Printer01
Office Printer 2 = \\PRINT01\Ortiz El-Office-Printer02
Office Xerox = \\PRINT01\Ortiz El-Office-Xerox
RM Lab = \\PRINT01\Ortiz El-TI Lab-Color Printer
System 44 Printer = \\PRINT01\Ortiz-Sys44-Printer
Workroom Color Printer = \\PRINT01\Ortiz El-Workroom-Color Printer
Workroom Xerox = \\PRINT01\Ortiz El-Workroom-Xerox
[153]
153-HB-LRCBW = \\Printelem\153-HB-LRCBW
153-HB-ReadBW = \\printelem\153-HB-ReadBW
153-HB-Rm300Lab2 = \\PrintElem\153-HB-Rm300Lab2
153-HC-K-1Color = \\printelem\153-HC-K-1Color
153-HC-TechLabColor = \\printelem\153-HC-TechLabColor
153-RC-LRCColor = \\Printelem\153-RC-LRCColor
153-XM-OffXrx = \\printelem\153-XM-OffXrx
153-XM-WkrmXrx02 = \\printelem\153-XM-WkrmXrx02
Conference Room = \\PRINT01\Bassetti El-Conference Room-Printer
Hallway 2-3 = \\PRINT01\Bassetti El-2-3 hall-Printer
Hallway 4-5 = \\PRINT01\Bassetti El-4-5 hall-Printer
Hallway K-1 Color = \\PRINT01\Bassetti El-K-1 hall-Color Printer
LRC Color = \\PRINT01\Bassetti El-LRC-Color Printer
Lab BW = \\PRINT01\Bassetti El-Lab-Printer01
Lab Color = \\PRINT01\Bassetti El-Lab-Color Printer
Mile Carts 26-27 = \\PRINT01\Bassetti El-Mile Carts 26-27-Printer
Room 301-BW (NEW) = \\PRINT01\Bassetti-301-RM-BW
Room 301-RM Lab Color = \\PRINT01\Bassetti El-Room 301-RM Lab-Color Printer
Workroom Xerox = \\PRINT01\Bassetti El-Workroom-Xerox
[155]
155-HB-Rm601aBW = \\printelem\155-HB-Rm601aBW
155-HC-604WkRmColor(NEW HP) = \\printelem\155-HC-604WkRmColor
155-HM-700Scan = \\printelem\155-HM-700Scan
155-XM-OffXerox = \\printelem\155-XM-OffXerox
155-XM-WrkrmXrx02 = \\printelem\155-XM-WrkrmXrx02
155-XM-WrkrmXrx03 = \\printelem\155-XM-WrkrmXrx03
Cafe MFC = \\PRINT01\Martinez El-Cafe-MFC
Hall 100 = \\PRINT01\Martinez El-Hall 100-Printer
Hall 200 = \\PRINT01\Martinez El-Hall 200-Printer
Hall 300 = \\PRINT01\Martinez El-Hall 300-Printer
Hall 400 = \\PRINT01\Martinez El-Hall 400-Printer
Hall 700 = \\PRINT01\Martinez El-Hall 700-Printer
I Sta Lab 607 = \\PRINT01\Martinez El-Lab 607-Printer
LRC BW = \\PRINT01\Martinez El-LRC-Printer
LRC Color = \\PRINT01\Martinez El-LRC-Color Printer
Lab 606 BW = \\PRINT01\Martinez El-Lab 606-Printer
Martinez El-Lab 606-Color Printer = \\print01\Martinez El-Lab 606-Color Printer
N/A = \\PRINT01\Martinez El-Lab 606-Color Printer
Office Xerox = \\PRINT01\Martinez El-Office-Xerox
Read 180-Sys 44 = \\PRINT01\Martinez El- R180-Printer
Room 407 SpEd ONLY = \\PRINT01\Martinez El-Room 407SpEd-Printer
Room 601D = \\PRINT01\Martinez El-601D-Fax
Room 601a ARD/Conf Room = \\PRINT01\Martinez El-Room 601a ARD-Printer
Room 604 Teacher Color = \\PRINT01\Martinez El-WkRm 604-Color Printer
Room 604 Teacher Xerox = \\PRINT01\Martinez El-WkRm-Xerox
Room 900 GYM office #2 = \\PRINT01\Martinez El-Room 900 Gym-Printer2
Room 900 GYM office = \\PRINT01\Martinez El-Room 900 Gym-Printer
[200]
200-BM-VOIPScan = \\PrintAdmin\200-BM-VOIPScan
200-HB-NetWorkGuysBW = \\PrintAdmin\200-HB-NetWorkGuysBW
200-XC-TCXerox = \\PrintAdmin\200-XC-TCXerox
Network Manager = \\PRINT01\Technology Center-Network Manager-Printer
Office Color = \\PRINT01\Technology Center-Office-Color Printer
Office Xerox = \\PRINT01\Technology Center-Office-Xerox
PEIMS (Print01) = \\PRINT01\Technology Center-PEIMS-Printer
PEIMS = \\PRINT01\Technology Center-PEIMS-Printer
PEIMS Color = \\PRINT01\Technology Center-PEIMS-Color Printer
PEIMS-FAX = \\PRINT01\Technology Center-PEIMS-Fax
Programmers Cube = \\PRINT01\Technology Center-Programmers Cube-Printer
Programmers Cube on Print01 = \\PRINT01\Technology Center-Programmers Cube-Printer
Programmers Cube on Print01 = \\PRINT01\Technology Center-Programmers Cube-Printer
Server Manager = \\PRINT01\Technology Center-Server Manager-Printer
VOIP Fax = \\PRINT01\Technology Center-VOIP Specialist-Fax
[201]
1D-Fax2 = \\PRINT01\One AISD Center-1D-Fax2
201-BM-11BEnglish = \\PrintAdmin\201-BM-11BEnglish
201-BM-11BMath = \\PrintAdmin\201-BM-11BMath
201-BM-11BScience = \\PrintAdmin\201-BM-11BScience
201-BM-11BSocStdy = \\PrintAdmin\201-BM-11BSocStdy
201-BM-1DMFC = \\PrintAdmin\201-BM-1DMFC
201-BM-2BScanner = \\PrintAdmin\201-BM-2BScanner
201-BM-4BMFC = \\PrintAdmin\201-BM-4BMFC
201-BM-4DCTE = \\PrintAdmin\201-BM-4DCTE
201-BM-5BScan = \\PrintAdmin\201-BM-5BScan
201-BM-7AMFC = \\PrintAdmin\201-BM-7AMFC
201-HB-10ABW = \\PrintAdmin\201-HB-10ABW
201-HB-1ABW = \\PrintAdmin\201-HB-1ABW
201-HB-4ABW = \\PrintAdmin\201-HB-4ABW
201-HB-4BBW = \\PrintAdmin\201-HB-4BBW
201-HB-501BW = \\PrintAdmin\201-HB-501BW
201-HB-502BW = \\PrintAdmin\201-HB-502BW
201-HB-503FBW = \\PrintAdmin\201-HB-503FBW
201-HB-504BW = \\PrintAdmin\201-HB-504BW
201-HB-508BW = \\PrintAdmin\201-HB-508BW
201-HB-509CBW = \\Printadmin\201-HB-509CBW
201-HB-510CBW = \\Printadmin\201-HB-510CBW
201-HB-5ABW = \\PrintAdmin\201-HB-5ABW
201-HB-6BPrinter01 = \\PrintAdmin\201-HB-6BPrinter01
201-HB-6BPrinter02 = \\PrintAdmin\201-HB-6BPrinter02
201-HB-7LBBW = \\PrintAdmin\201-HB-7LBBW
201-HB-8ABW = \\PrintAdmin\201-HB-8ABW
201-HB-9ABW = \\PrintAdmin\201-HB-9ABW
201-HB-CheckBW = \\PrintAdmin\201-HB-CheckBW
201-HB-Lab2BW = \\PrintAdmin\201-HB-Lab2BW
201-HC-10AColor = \\PrintAdmin\201-HC-10AColor
201-HC-10DColor = \\PrintAdmin\201-HC-10DColor
201-HC-11AColor = \\PrintAdmin\201-HC-11AColor
201-HC-11BColor = \\PrintAdmin\201-HC-11BColor
201-HC-405EColor = \\PrintAdmin\201-HC-405EColor
201-HC-4BColor = \\PrintAdmin\201-HC-4BColor
201-HC-507AColor = \\PrintAdmin\201-HC-507AColor
201-HC-507BColor = \\PrintAdmin\201-HC-507BColor
201-HC-508CColor = \\PrintAdmin\201-HC-508CColor
201-HC-510CColor = \\PrintAdmin\201-HC-510CColor
201-HC-8AColor = \\PrintAdmin\201-HC-8AColor
201-HC-ESLDirColor = \\PrintAdmin\201-HC-ESLDirColor
201-HM-307AScan = \\PrintAdmin\201-HM-307AScan
201-HM-403DScan = \\Printadmin\201-HM-403DScan
201-HM-800LScan = \\PrintAdmin\201-HM-800LScan
201-RB-504EBW = \\PrintAdmin\201-RB-504EBW
201-RB-MaintRoom = \\PrintAdmin\201-RB-MaintRoom
201-XC-SuptOff = \\PrintAdmin\201-XC-SuptOff
201-XM-11BXerox = \\PrintAdmin\201-XM-11BXerox
201-XM-20CXerox = \\PrintAdmin\201-XM-20CXerox
201-XM-2AXerox = \\PrintAdmin\201-XM-2AXerox
201-XM-502Xrx = \\PrintAdmin\201-XM-502Xrx
201-XM-7LBXerox = \\PrintAdmin\201-XM-7BXerox
201-XM-7LBXerox = \\PrintAdmin\201-XM-7LBXerox
201-XM-8AXerox = \\PrintAdmin\201-XM-8AXerox
201-XM-T1Off = \\PrintAdmin\201-XM-T1Off
2A New B/W = \\PRINT01\AISD One-2A-NewBW
3C Scanner-Fax = \\PRINT01\One AISD Center-3C-Scanner-Fax
4B NEW B-W Printer = \\PRINT01\One AISD Center-4B-New Printer
4B NEW Color Printer = \\PRINT01\One AISD Center-4B-New Color Printer
4D CTE MFC\Fax = \\PRINT01\AISD One-4D-MFC
Mile Cart 123 = \\PRINT01\AISD One-IT-Mile 123
Mile Cart 124 = \\PRINT01\AISD One-IT-Mile 124
Mile Cart 125 = \\PRINT01\AISD One-IT-Mile 125
Mile Cart 126 = \\PRINT01\AISD One-IT-Mile 126
Suite 10A = \\PRINT01\One AISD Center-10A-Printer
Suite 10A Color = \\PRINT01\One AISD Center-10A-Color Printer
Suite 10B Color01 = \\PRINT01\One AISD Center-10B-Color Printer01
Suite 10B Color02 = \\PRINT01\One AISD Center-10B-Color Printer02
Suite 10B Fax = \\PRINT01\One AISD Center-10B-Fax
Suite 10B Fax2 = \\PRINT01\One AISD Center-10B-Fax2
Suite 10D = \\PRINT01\One AISD Center-10D-Printer
Suite 10D Color = \\PRINT01\One AISD Center-10D-Color Printer
Suite 11A Color = \\PRINT01\One AISD Center-11A-Color Printer
Suite 11A Color Printer B = \\PRINT01\One AISD Center-11A-Color Printer B
Suite 11B Color = \\PRINT01\One AISD Center-11B-Color Printer
Suite 11C Color = \\PRINT01\One AISD Center-11C-Color Printer
Suite 12B Color02 = \\PRINT01\One AISD Center-12B-Color Printer02
Suite 12LB Lab3 = \\PRINT01\One AISD Center-12LB Lab3-Color Printer
Suite 13B Fax = \\PRINT01\One AISD Center-13B-Fax
Suite 14B Color = \\PRINT01\One AISD Center-14B-Color Printer
Suite 15B Fax = \\PRINT01\One AISD Center-15B-Fax
Suite 1A = \\PRINT01\One AISD Center-1A-Printer01
Suite 1A Old = \\PRINT01\One AISD Center-1A-Printer
Suite 1A printer02 = \\PRINT01\One AISD Center-1A-Printer02
Suite 1D Color = \\PRINT01\One AISD Center-1D-Color
Suite 1D Fax = \\PRINT01\One AISD Center-1D-Fax
Suite 20C Color = \\PRINT01\One AISD Center-20C-Color Printer
Suite 2A = \\PRINT01\One AISD Center-2A-Printer03
Suite 2B Homeless Dept = \\PRINT01\AISD One-2B-Homeless Dept
Suite 2D Color = \\PRINT01\One AISD Center-2D-Color Printer
Suite 2D Fax01 = \\PRINT01\One AISD Center-2D-Fax01
Suite 2D Fax02 = \\PRINT01\One AISD Center-2D-Fax02
Suite 2D Xerox = \\PRINT01\One AISD Center-2D-Xerox
Suite 3B Color = \\PRINT01\One AISD Center-3B-Color Printer
Suite 3D Color = \\PRINT01\One AISD Center-3D-Color Printer
Suite 4A = \\PRINT01\One AISD Center-4A-Printer01
Suite 4B = \\PRINT01\One AISD Center-4B-Printer
Suite 4D Color = \\PRINT01\One AISD Center-4D-Color Printer
Suite 4D Conference = \\PRINT01\One AISD Center-4D-Conference
Suite 4D Conference Scanner = \\PRINT01\One AISD Center-4D-Conference-Scanner
Suite 4D Fax = \\PRINT01\One AISD Center-4D-Fax
Suite 5A = \\PRINT01\One AISD Center-5A-Printer
Suite 5B = \\PRINT01\One AISD Center-5B-Printer01
Suite 5B Color 2 = \\PRINT01\AISD One-5B-Color2
Suite 5B Color = \\PRINT01\One AISD Center-5B-Color Printer
Suite 5B Fax = \\PRINT01\One AISD Center-5B-Fax
Suite 5B Keith D BW = \\PRINT01\AISD One-5B-NewBW
Suite 5D Color = \\PRINT01\One AISD Center-5D-Color Printer
Suite 5D Fax = \\PRINT01\One AISD Center-5D-Fax
Suite 5D Xerox = \\PRINT01\One AISD Center-5D-Xerox
Suite 6A Color = \\PRINT01\One AISD Center-6A-Color Printer
Suite 6A Xerox = \\PRINT01\One AISD Center-6A-Xerox
Suite 6B CHECKS = \\FINPASRV1\CHECKS
Suite 6B Check = \\PRINT01\One AISD Center-6B-Check Printer
Suite 6B Check = \\PRINT1\One AISD Center-6B-Check Printer
Suite 6B Check On Print2 = \\PRINT2\One AISD Center-6B-Check Printer
Suite 6B Check On Print2 = \\PRINT2\One AISD Center-6B-Check Printer
Suite 6B Check on Print01 = \\PRINT01\One AISD Center-6B-Check Printer
Suite 6B Check on Print01 = \\PRINT01\One AISD Center-6B-Check Printer
Suite 6B Cindy Brown2 = \\PRINT01\One AISD Center-6B-Printer04
Suite 6B Cindy Brown2 = \\PRINT01\One AISD Center-6B-Printer04
Suite 6B Printer01 On Print01 = \\PRINT01\One AISD Center-6B-Printer01
Suite 6B Printer02 On Print01 = \\PRINT01\One AISD Center-6B-Printer02
Suite 6B Printer02 On Print01 = \\PRINT01\One AISD Center-6B-Printer02
Suite 6B Printer02 On Print2 = \\PRINT2\One AISD Center-6B-Printer02
Suite 6B Printer02 On Print2 = \\PRINT2\One AISD Center-6B-Printer02
Suite 6B Scanner = \\PRINT01\One AISD Center-6B-Scanner
Suite 6B Xerox = \\PRINT01\One AISD Center-6B-Xerox
Suite 6B-both HP 8150s = \\PRINT01\One AISD Center-6B-Printer01
Suite 6D Color = \\PRINT01\One AISD Center-6D-Color Printer
Suite 6LB = \\PRINT01\One AISD Center-6LB-Color Printer
Suite 6LB Color Printer ONLY = \\PRINT01\One AISD Center-6LB-Color Printer
Suite 6LD = \\PRINT01\One AISD Center-6LD-Printer
Suite 7A = \\PRINT01\One AISD Center-7A-Printer
Suite 7D Color = \\PRINT01\One AISD Center-7D-Color Printer
Suite 7D Color01 = \\PRINT01\One AISD Center-7D-Color Printer01
Suite 7D Color02 = \\PRINT01\One AISD Center-7D-Color Printer02
Suite 7D Fax = \\PRINT01\One AISD Center-7D-Fax
Suite 7LB = \\PRINT01\One AISD Center-7LB-Color Printer2
Suite 7LB HP Color = \\PRINT01\One AISD Center-7LB-Color Printer2
Suite 7LB Xerox = \\PRINT01\One AISD Center-7LB-Xerox
Suite 7LB Xerox = \\PRINT1\One AISD Center-7LB-Xerox
Suite 8A = \\PRINT01\One AISD Center-8A-Printer01
Suite 8A Fax = \\PRINT01\One AISD Center-8A-Fax
Suite 8A Xerox = \\PRINT01\One AISD Center-8A-Xerox
Suite 8LB = \\PRINT01\One AISD Center-8LB-Fax
Suite 8LB = \\PRINT1\One AISD Center-8LB-Fax
Suite 8LB Lab1 = \\PRINT01\One AISD Center-8LB Lab1-Printer
Suite 8LB Lab1 = \\PRINT1\One AISD Center-8LB Lab1-Printer
Suite 8LB Lab2 = \\PRINT01\One AISD Center-8LB Lab2-Printer
Suite 8LB Lab2 = \\PRINT1\One AISD Center-8LB Lab2-Printer
Suite 9A = \\PRINT01\One AISD Center-9A-Printer
Suite 9A Xerox = \\PRINT01\One AISD Center-9A-Xerox
Suite 9B Color 2 = \\PRINT01\One AISD Center-9B-Color Printer2
Suite 9B Scanner = \\PRINT01\One AISD Center-9B-MFC
Suite 9D Color = \\PRINT01\One AISD Center-9D-Color Printer
Suite 9D Fax = \\PRINT01\One AISD Center-9D-Fax
Suite4a Printer02 = \\PRINT01\One AISD Center-4A-Printer02
Suite4a Printer03 = \\PRINT01\One AISD Center-4A-Printer03
Testing Room = \\PRINT01\One AISD Center-Testing Room-Printer
[202]
202-BM-TSCMFC = \\PRINTADMIN\202-BM-TSCMFC
202-BM-TechPortMFC = \\PRINTADMIN\202-BM-TechPortMFC
202-HB-CableBW = \\PRINTADMIN\202-HB-CableBW
202-HB-TSCBW = \\PRINTADMIN\202-HB-TSCBW
202-HC-TSCColor = \\PRINTADMIN\202-HC-TSCColor
202-XM-TSCXrx = \\PRINTADMIN\202-XM-TSCXrx
Cable Engineer = \\PRINT01\Alta Vista-Room 11A-Fax
Cable Office = \\PRINT01\Tech Support Cntr-Cable Office-Printer
Cable Technicians = \\PRINT01\Alta Vista-Room 12-Printer
Cable Techs = \\PRINT01\Tech Support Cntr-Cable-Printer
HP Black-White = \\PRINT01\Tech Support Cntr-Techs-Printer
HP Color(Jims Cube) = \\PRINT01\Tech Support Cntr-Techs-Color Printer
Room 18 Color = \\PRINT01\Alta Vista-Room Lab-Color Printer
Room 24 Color = \\PRINT01\Alta Vista-Room 24-Color Printer
Room 24 Xerox = \\PRINT01\Alta Vista-Room 24-Xerox
TS HP TEST Color = \\PRINT01\Alta Vista-Technology Support Center-Test Color
TS HP Test B-W = \\PRINT01\Alta Vista-Technology Support Center-Test B-W
TS Jims Bench = \\PRINT01\Alta Vista-Technology Support Center-Jims work bench
Technology Support = \\PRINT01\Alta Vista-Technology Support Center-Color Printer
Technology Support Xerox = \\PRINT01\Alta Vista-Technology Support Center-Xerox
Workroom Color = \\PRINT01\Alta Vista-Workroom-Color Printer
XEROX = \\PRINT01\Tech Support Cntr-Techs-Xerox
[203]
203-BM-OffMFC = \\PrintAdmin\203-BM-OffMFC
203-RC-OfficeColor = \\PrintAdmin\203-RC-OfficeColor
203-XM-OffXrX = \\PrintAdmin\203-XM-OffXrX
[238]
238-HB-Jim1BW = \\PrintAdmin\238-HB-Jim1BW
238-HC-PurchColor = \\PrintAdmin\238-HC-PurchColor
238-HM-MFC-A = \\PrintAdmin\238-HM-MFC-A
238-HM-MFC-B = \\PrintAdmin\238-HM-MFC-B
FAX B = \\PRINT01\Purchasing-Printer Room-Fax B
Printer Room Fax = \\PRINT01\Purchasing-Printer Room-Fax
Printer Room PO Printer = \\PRINT01\Purchasing-Printer Room-PO Printer
Printer Room Printer2 New HP = \\PRINT01\Purchasing-Printer Room-Printer2
Printer Room Xerox = \\PRINT01\Purchasing-Printer Room-Xerox
[251]
251-HB-OperBW = \\PrintAdmin\251-HB-OperBW
251-HC-OfficeColor = \\PrintAdmin\251-HC-OfficeColor
251-HM-CustMFC = \\PrintAdmin\251-HM-CustMFC
251-XM-CustWC = \\PrintAdmin\251-XM-CustWC
251-XM-WkOrdWC = \\PrintAdmin\251-XM-WkOrdWC
Director = \\PRINT01\Maintenance-Director-Printer
Energy ED office = \\PRINT01\Maintenance-EnergyED-Printer
Office Xerox = \\PRINT01\Maintenance-Office-Xerox
Operations = \\PRINT01\Maintenance-Operations-Printer
Operations Manager's Office Color = \\PRINT01\Maintenance-Operations Manager Office-Color Printer
Secretary Color = \\PRINT01\Maintenance-Secretary-Color Printer
Supervisor Area = \\PRINT01\Maintenance-Supervisor Area-Printer

 

Edited by Elephant007
Link to comment
Share on other sites

  • Moderators

Elephant007,

_GUICtrlListBox_GetSelItemsText would seem to be the function you need.

I have also tidied up the code a bit - there is no need to read all the ini sections initially, just read them when required:

#include <ButtonConstants.au3>
#include <ComboConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <GUIListBox.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>

#region ### Start Read INI to Array ###
Global $SINI = "Network_Print_Manager_Printer_List.ini"
If @error Then MsgBox(4096, "", "Error occurred, probably no INI file.")

#region === Start Campus Type ===
Local $ACAMPUS = IniReadSection($SINI, "CAMPUS")
Local $SCAMPUS = ""
For $I = 1 To $ACAMPUS[0][0]
    $SCAMPUS &= "|" & $ACAMPUS[$I][0]
Next
#EndRegion

#region ### START Koda GUI section ### Form=C:\Users\104438\Desktop\Network.kxf
$Network = GUICreate("Network Print Manager", 800, 532, 180, 117)
GUISetFont(11)
$CCAMPUS_TYPE = GUICtrlCreateLabel("Campus Type", 24, 16, 69, 17)
$CCOMBO_TYPE = GUICtrlCreateCombo("", 112, 16, 201, 25, BitOR($ES_UPPERCASE, $GUI_SS_DEFAULT_COMBO, $CBS_DROPDOWNLIST))
GUICtrlSetData(-1, $SCAMPUS)
Local $CLABEL_LOCATION = GUICtrlCreateLabel("Location", 24, 56, 69, 17)
GUICtrlSetState(-1, $GUI_HIDE)
Local $CCOMBO_LOCATION = GUICtrlCreateCombo("", 112, 56, 201, 25, BitOR($ES_UPPERCASE, $GUI_SS_DEFAULT_COMBO, $CBS_DROPDOWNLIST))
GUICtrlSetState(-1, $GUI_HIDE)
$CLIST_APRINTER = GUICtrlCreateLabel("List of Available Printers", 424, 16, 116, 17)
$CLIST_PRINTER = GUICtrlCreateList("", 344, 40, 281, 461, BitOR($LBS_SORT,$LBS_STANDARD,0x800,$WS_VSCROLL))
GUICtrlSetLimit(-1, -1)
$LR_GROUP = GUICtrlCreateGroup("", 24, 168, 297, 337)
Local $CRADIO_LOCAL = GUICtrlCreateRadio("This Computer", 56, 184, 113, 17)
GUICtrlSetState(-1, $GUI_CHECKED)
Local $CRADIO_REMOTE = GUICtrlCreateRadio("Remote Computer", 56, 208, 150, 17)
$CLIST_COMPUTERS = GUICtrlCreateEdit("", 48, 248, 249, 233, BitOR($ES_UPPERCASE, $ES_MULTILINE, $ES_WANTRETURN))
GUICtrlSetData(-1, "")
GUICtrlSetState(-1, $GUI_DISABLE)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$ADD_RADIO = GUICtrlCreateRadio("Add Printer", 24, 104, 113, 17)
GUICtrlSetState(-1, $GUI_CHECKED)
$DELETE_RADIO = GUICtrlCreateRadio("Delete Printer", 24, 128, 113, 17)
GUISetState(@SW_SHOW)
$MAKE_DEFAULT = GUICtrlCreateCheckbox('Set As Default Printer', 150, 100)
$BUTTON_GO = GUICtrlCreateButton('Go', 660, 40, 100, 100)
GUICtrlSetState(-1, $GUI_DISABLE)
#endregion ### END Koda GUI section ###

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
        Case $CCOMBO_TYPE
            GUICtrlSetState($CLABEL_LOCATION, $GUI_SHOW)
            GUICtrlSetState($CCOMBO_LOCATION, $GUI_SHOW)
            $aLocation = IniReadSection($SINI, GUICtrlRead($CCOMBO_TYPE))
            Local $sLocation = ""
            For $i = 1 To $aLocation[0][0]
                $sLocation &= "|" & $aLocation[$i][0]
            Next
            GUICtrlSetData($CCOMBO_LOCATION, $sLocation)

        Case $CCOMBO_LOCATION

            $PRINTLIST = Stringleft(GUICtrlRead($CCOMBO_LOCATION), 3)

            GUICtrlSetState($CLIST_PRINTER, $GUI_SHOW)
            GUICtrlSetState($BUTTON_GO, $GUI_ENABLE)
            $aPrinters = IniReadSection($SINI, $PRINTLIST)
            Local $sPrinters = ""
            For $i = 1 To $aPrinters[0][0]
                $sPrinters &= "|" & $aPrinters[$i][0]
            Next
            GUICtrlSetData($CLIST_PRINTER, $sPrinters)


        Case $CRADIO_REMOTE
            GUICtrlSetState($CLIST_COMPUTERS, $GUI_ENABLE)
        Case $CRADIO_LOCAL
            GUICtrlSetState($CLIST_COMPUTERS, $GUI_DISABLE)
            GUICtrlSetData($CLIST_COMPUTERS, "")
        Case $BUTTON_GO

            $aSelections = _GUICtrlListBox_GetSelItemsText($CLIST_PRINTER)
            For $i = 1 To $aSelections[0]
                Local $PRINTPATH = IniRead($SINI, $PRINTLIST, $aSelections[$i], "Error")
                $SET_DEFAULT = "0"
                $SET_DEFAULT_MSG = "No"
                If GUICtrlRead($MAKE_DEFAULT) = $GUI_CHECKED Then
                    $SET_DEFAULT = "1"
                    $SET_DEFAULT_MSG = "Yes"
                EndIf
                If GUICtrlRead($CRADIO_LOCAL) = 1 Then
                    If GUICtrlRead($ADD_RADIO) = 1 Then
                        $Q = MsgBox(68, "Installing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & @ComputerName & @CRLF & "Set Default: " & $SET_DEFAULT_MSG)
                        If $Q = 6 Then

                            ConsoleWrite("Installing: " & $PRINTPATH  & @CRLF)
                            #cs
                            RunWait('rundll32 printui.dll, PrintUIEntry /R /ga /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                            If $SET_DEFAULT = "1" Then
                                Sleep(10000)
                                FileDelete("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\DefaultPrinter.cmd")
                                FileWriteLine("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\DefaultPrinter.cmd", "@ECHO OFF" & @CRLF & 'rundll32 printui.dll, PrintUIEntry /y /n "' & $PRINTPATH & '" /q')
                                RunWait('rundll32 printui.dll, PrintUIEntry /y /n "' & $PRINTPATH & '" /q', "", @SW_SHOW)
                                FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Add LOCAL Printer: """ & $PRINTPATH & """ on Computer: " & @ComputerName & " Set Default: " & $SET_DEFAULT_MSG)
                            EndIf
                            #ce
                        EndIf
                    EndIf
                EndIf
                If GUICtrlRead($CRADIO_REMOTE) = 1 Then
                    If GUICtrlRead($ADD_RADIO) = 1 Then
                        $Q = MsgBox(68, "Installing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & GUICtrlRead($CLIST_COMPUTERS) & @CRLF & "Set Default: " & $SET_DEFAULT_MSG)
                        If $Q = 6 Then

                            ConsoleWrite("Installing: " & $PRINTPATH  & @CRLF)
                            #cs
                            RunWait('rundll32 printui.dll, PrintUIEntry /R /ga /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                            If $SET_DEFAULT = "1" Then
                                Sleep(10000)
                                FileWriteLine("C:\Windows\Temp\DefaultPrinter.cmd", "@ECHO OFF" & @CRLF & 'rundll32 printui.dll, PrintUIEntry /y /n "' & $PRINTPATH & '" /q')
                                RunWait('copy "c:\Windows\Temp\DefaultPrinter.cmd" "\\' & GUICtrlRead($CLIST_COMPUTERS) & '\c$\\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp" /y', "", @SW_HIDE)
                                RunWait('rundll32 printui.dll, PrintUIEntry /y /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '" /q', "", @SW_SHOW)
                                FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Add REMOTE Printer: """ & $PRINTPATH & """ on Computer: " & GUICtrlRead($CLIST_COMPUTERS) & " Set Default: " & $SET_DEFAULT_MSG)
                            EndIf
                            #ce
                        EndIf
                    EndIf
                EndIf
                If GUICtrlRead($CRADIO_REMOTE) = 1 Then
                    If GUICtrlRead($DELETE_RADIO) = 1 Then
                        $Q = MsgBox(68, "Removing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & GUICtrlRead($CLIST_COMPUTERS))
                        If $Q = 6 Then

                            ConsoleWrite("Installing: " & $PRINTPATH  & @CRLF)
                            #cs
                            RunWait('rundll32 printui.dll, PrintUIEntry /gd /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                            FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Remove REMOTE Printer: """ & $PRINTPATH & """ on Computer: " & GUICtrlRead($CLIST_COMPUTERS))
                            #ce
                        EndIf
                    EndIf
                EndIf
                If GUICtrlRead($CRADIO_LOCAL) = 1 Then
                    If GUICtrlRead($DELETE_RADIO) = 1 Then
                        $Q = MsgBox(68, "Removing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & @ComputerName)
                        If $Q = 6 Then

                            ConsoleWrite("Installing: " & $PRINTPATH  & @CRLF)
                            #cs
                            RunWait('rundll32 printui.dll, PrintUIEntry /gd /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                            FileWriteLine("logs\Network_Print_Manager.log", @MON & '/' & @MDAY & '/' & @YEAR & ' @ ' & @HOUR & ':' & @MIN & ':' & @SEC & '          By: ' & @UserName & ' - Remove LOCAL Printer: "' & $PRINTPATH & '" on Computer: ' & @ComputerName)
                            #ce
                        EndIf
                    EndIf
                EndIf
            Next
        Case $DELETE_RADIO
            GUICtrlSetState($MAKE_DEFAULT, $GUI_DISABLE + $GUI_UNCHECKED)
        Case $ADD_RADIO
            GUICtrlSetState($MAKE_DEFAULT, $GUI_ENABLE)
    EndSwitch
WEnd

But you now have a problem with determining the default printer. I think you would be better off with a ListView rather then a ListBox - then you can add a checkbox to each printer and select the default that way. I will try and work on an example this evening.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

  • Moderators

Elephant007,

Here is the script with a ListView - I think it works as you require:

#include <ButtonConstants.au3>
#include <ComboConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <GUIListBox.au3>
#include <GUIListView.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>

#Region ### Start Read INI to Array ###
    Global $SINI = "Network_Print_Manager_Printer_List.ini"
    If @error Then MsgBox(4096, "", "Error occurred, probably no INI file.")
#EndRegion ### Start Read INI to Array ###
#Region === Start Campus Type ===
    Local $ACAMPUS = IniReadSection($SINI, "CAMPUS")
    Local $SCAMPUS = ""
    For $I = 1 To $ACAMPUS[0][0]
        $SCAMPUS &= "|" & $ACAMPUS[$I][0]
    Next
#EndRegion === Start Campus Type ===

#Region ### START Koda GUI section ### Form=C:\Users\104438\Desktop\Network.kxf

    $Network = GUICreate("Network Print Manager", 800, 532, 180, 117)
    GUISetFont(11)
    $CCAMPUS_TYPE = GUICtrlCreateLabel("Campus Type", 24, 16, 69, 17)
    $CCOMBO_TYPE = GUICtrlCreateCombo("", 112, 16, 201, 25, BitOR($ES_UPPERCASE, $GUI_SS_DEFAULT_COMBO, $CBS_DROPDOWNLIST))
    GUICtrlSetData(-1, $SCAMPUS)
    Local $CLABEL_LOCATION = GUICtrlCreateLabel("Location", 24, 56, 69, 17)
    GUICtrlSetState(-1, $GUI_HIDE)
    Local $CCOMBO_LOCATION = GUICtrlCreateCombo("", 112, 56, 201, 25, BitOR($ES_UPPERCASE, $GUI_SS_DEFAULT_COMBO, $CBS_DROPDOWNLIST))
    GUICtrlSetState(-1, $GUI_HIDE)
    $CLIST_APRINTER = GUICtrlCreateLabel("List of Available Printers", 424, 16, 116, 17)

    $CLIST_PRINTER = GUICtrlCreateListView("Printers", 344, 40, 281, 461, BitOR($LVS_NOCOLUMNHEADER, $LVS_SHOWSELALWAYS))
    _GUICtrlListView_SetExtendedListViewStyle($CLIST_PRINTER, $LVS_EX_CHECKBOXES)
    _GUICtrlListView_SetColumnWidth($CLIST_PRINTER, 0, 265)

    $LR_GROUP = GUICtrlCreateGroup("", 24, 168, 297, 337)
    Local $CRADIO_LOCAL = GUICtrlCreateRadio("This Computer", 56, 184, 113, 17)
    GUICtrlSetState(-1, $GUI_CHECKED)
    Local $CRADIO_REMOTE = GUICtrlCreateRadio("Remote Computer", 56, 208, 150, 17)
    $CLIST_COMPUTERS = GUICtrlCreateEdit("", 48, 248, 249, 233, BitOR($ES_UPPERCASE, $ES_MULTILINE, $ES_WANTRETURN))
    GUICtrlSetData(-1, "")
    GUICtrlSetState(-1, $GUI_DISABLE)
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    $ADD_RADIO = GUICtrlCreateRadio("Add Printer", 24, 104, 113, 17)
    GUICtrlSetState(-1, $GUI_CHECKED)
    $DELETE_RADIO = GUICtrlCreateRadio("Delete Printer", 24, 128, 113, 17)
    GUISetState(@SW_SHOW)
    $BUTTON_GO = GUICtrlCreateButton('Go', 660, 40, 100, 100)
    GUICtrlSetState(-1, $GUI_DISABLE)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg

        Case $GUI_EVENT_CLOSE
            Exit
        Case $CCOMBO_TYPE
            GUICtrlSetState($CLABEL_LOCATION, $GUI_SHOW)
            GUICtrlSetState($CCOMBO_LOCATION, $GUI_SHOW)
            $aLocation = IniReadSection($SINI, GUICtrlRead($CCOMBO_TYPE))
            Local $sLocation = ""
            For $I = 1 To $aLocation[0][0]
                $sLocation &= "|" & $aLocation[$I][0]
            Next
            GUICtrlSetData($CCOMBO_LOCATION, $sLocation)

        Case $CCOMBO_LOCATION

            $PRINTLIST = StringLeft(GUICtrlRead($CCOMBO_LOCATION), 3)

            GUICtrlSetState($CLIST_PRINTER, $GUI_SHOW)
            GUICtrlSetState($BUTTON_GO, $GUI_ENABLE)
            $aPrinters = IniReadSection($SINI, $PRINTLIST)
            For $I = 1 To $aPrinters[0][0]
                GUICtrlCreateListViewItem($aPrinters[$I][0], $CLIST_PRINTER)
            Next

        Case $CRADIO_REMOTE
            GUICtrlSetState($CLIST_COMPUTERS, $GUI_ENABLE)
        Case $CRADIO_LOCAL
            GUICtrlSetState($CLIST_COMPUTERS, $GUI_DISABLE)
            GUICtrlSetData($CLIST_COMPUTERS, "")
        Case $BUTTON_GO

            $aSelections = _GUICtrlListView_GetSelectedIndices($CLIST_PRINTER, True)

            For $I = 1 To $aSelections[0]

                $sPrinter = _GUICtrlListView_GetItemText($CLIST_PRINTER, $aSelections[$I])

                Local $PRINTPATH = IniRead($SINI, $PRINTLIST, $sPrinter, "Error")

                $SET_DEFAULT = "0"
                $SET_DEFAULT_MSG = "No"
                If _GUICtrlListView_GetItemChecked($CLIST_PRINTER, $aSelections[$I]) Then
                    $SET_DEFAULT = "1"
                    $SET_DEFAULT_MSG = "Yes"
                EndIf



                ConsoleWrite(GUICtrlRead($CRADIO_LOCAL) & GUICtrlRead($ADD_RADIO) & @CRLF)

                Switch GUICtrlRead($CRADIO_LOCAL) & GUICtrlRead($ADD_RADIO)
                    Case "11" ; LOCAL & ADD
                        $Q = MsgBox(68, "Installing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & @ComputerName & @CRLF & "Set Default: " & $SET_DEFAULT_MSG)
                        If $Q = 6 Then
                            ConsoleWrite("Installing Local: " & $PRINTPATH & @CRLF)
                            #cs

                                RunWait('rundll32 printui.dll, PrintUIEntry /R /ga /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                                If $SET_DEFAULT = "1" Then
                                Sleep(10000)
                                FileDelete("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\DefaultPrinter.cmd")
                                FileWriteLine("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\DefaultPrinter.cmd", "@ECHO OFF" & @CRLF & 'rundll32 printui.dll, PrintUIEntry /y /n "' & $PRINTPATH & '" /q')
                                RunWait('rundll32 printui.dll, PrintUIEntry /y /n "' & $PRINTPATH & '" /q', "", @SW_SHOW)
                                FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Add LOCAL Printer: """ & $PRINTPATH & """ on Computer: " & @ComputerName & " Set Default: " & $SET_DEFAULT_MSG)
                                EndIf

                            #ce

                        EndIf

                    Case "14" ; LOCAL & DELETE
                        If $Q = 6 Then
                            ConsoleWrite("Deleting Local: " & $PRINTPATH & @CRLF)
                            #cs

                                RunWait('rundll32 printui.dll, PrintUIEntry /gd /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                                FileWriteLine("logs\Network_Print_Manager.log", @MON & '/' & @MDAY & '/' & @YEAR & ' @ ' & @HOUR & ':' & @MIN & ':' & @SEC & '          By: ' & @UserName & ' - Remove LOCAL Printer: "' & $PRINTPATH & '" on Computer: ' & @ComputerName)
                            #ce

                        EndIf



                    Case "41" ; REMOTE & ADD
                        $Q = MsgBox(68, "Installing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & GUICtrlRead($CLIST_COMPUTERS) & @CRLF & "Set Default: " & $SET_DEFAULT_MSG)
                        If $Q = 6 Then

                            ConsoleWrite("Installing Remote: " & $PRINTPATH & @CRLF)
                            #cs

                                RunWait('rundll32 printui.dll, PrintUIEntry /R /ga /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                                If $SET_DEFAULT = "1" Then
                                Sleep(10000)
                                FileWriteLine("C:\Windows\Temp\DefaultPrinter.cmd", "@ECHO OFF" & @CRLF & 'rundll32 printui.dll, PrintUIEntry /y /n "' & $PRINTPATH & '" /q')
                                RunWait('copy "c:\Windows\Temp\DefaultPrinter.cmd" "\\' & GUICtrlRead($CLIST_COMPUTERS) & '\c$\\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp" /y', "", @SW_HIDE)
                                RunWait('rundll32 printui.dll, PrintUIEntry /y /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '" /q', "", @SW_SHOW)
                                FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Add REMOTE Printer: """ & $PRINTPATH & """ on Computer: " & GUICtrlRead($CLIST_COMPUTERS) & " Set Default: " & $SET_DEFAULT_MSG)
                                EndIf

                            #ce

                        EndIf



                    Case "44" ; REMOTE & DELETE
                        $Q = MsgBox(68, "Removing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & GUICtrlRead($CLIST_COMPUTERS))
                        If $Q = 6 Then

                            ConsoleWrite("Deleting Remote: " & $PRINTPATH & @CRLF)
                            #cs

                                RunWait('rundll32 printui.dll, PrintUIEntry /gd /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                                FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Remove REMOTE Printer: """ & $PRINTPATH & """ on Computer: " & GUICtrlRead($CLIST_COMPUTERS))
                            #ce

                        EndIf

                    Case "10" ; LOCAL & DELETE


                        If GUICtrlRead($CRADIO_REMOTE) = 1 Then
                            If GUICtrlRead($ADD_RADIO) = 1 Then
                                $Q = MsgBox(68, "Installing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & GUICtrlRead($CLIST_COMPUTERS) & @CRLF & "Set Default: " & $SET_DEFAULT_MSG)
                                If $Q = 6 Then

                                    ConsoleWrite("Installing: " & $PRINTPATH & @CRLF)
                                    #cs

                                        RunWait('rundll32 printui.dll, PrintUIEntry /R /ga /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                                        If $SET_DEFAULT = "1" Then
                                        Sleep(10000)
                                        FileWriteLine("C:\Windows\Temp\DefaultPrinter.cmd", "@ECHO OFF" & @CRLF & 'rundll32 printui.dll, PrintUIEntry /y /n "' & $PRINTPATH & '" /q')
                                        RunWait('copy "c:\Windows\Temp\DefaultPrinter.cmd" "\\' & GUICtrlRead($CLIST_COMPUTERS) & '\c$\\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp" /y', "", @SW_HIDE)
                                        RunWait('rundll32 printui.dll, PrintUIEntry /y /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '" /q', "", @SW_SHOW)
                                        FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Add REMOTE Printer: """ & $PRINTPATH & """ on Computer: " & GUICtrlRead($CLIST_COMPUTERS) & " Set Default: " & $SET_DEFAULT_MSG)
                                        EndIf

                                    #ce

                                EndIf

                            EndIf

                        EndIf

                        If GUICtrlRead($CRADIO_REMOTE) = 1 Then
                            If GUICtrlRead($DELETE_RADIO) = 1 Then
                                $Q = MsgBox(68, "Removing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & GUICtrlRead($CLIST_COMPUTERS))
                                If $Q = 6 Then

                                    ConsoleWrite("Installing: " & $PRINTPATH & @CRLF)
                                    #cs

                                        RunWait('rundll32 printui.dll, PrintUIEntry /gd /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                                        FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Remove REMOTE Printer: """ & $PRINTPATH & """ on Computer: " & GUICtrlRead($CLIST_COMPUTERS))
                                    #ce

                                EndIf

                            EndIf

                        EndIf

                        If GUICtrlRead($CRADIO_LOCAL) = 1 Then
                            If GUICtrlRead($DELETE_RADIO) = 1 Then
                                $Q = MsgBox(68, "Removing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & @ComputerName)
                                If $Q = 6 Then

                                    ConsoleWrite("Installing: " & $PRINTPATH & @CRLF)
                                    #cs

                                        RunWait('rundll32 printui.dll, PrintUIEntry /gd /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                                        FileWriteLine("logs\Network_Print_Manager.log", @MON & '/' & @MDAY & '/' & @YEAR & ' @ ' & @HOUR & ':' & @MIN & ':' & @SEC & '          By: ' & @UserName & ' - Remove LOCAL Printer: "' & $PRINTPATH & '" on Computer: ' & @ComputerName)
                                    #ce

                                EndIf

                            EndIf

                        EndIf

                EndSwitch

            Next
        Case $DELETE_RADIO
            _GUICtrlListView_SetExtendedListViewStyle($CLIST_PRINTER, 0)
        Case $ADD_RADIO
            _GUICtrlListView_SetExtendedListViewStyle($CLIST_PRINTER, $LVS_EX_CHECKBOXES)
    EndSwitch

WEnd

Please ask if you have any questions.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

I appreciate all the help you've given me through the years, another fine example of your capabilities.

To, the default printer isn't top priority since it cannot be set machine level rather individual profiles. Is there away to change this so that the checkbox selects the printer instead? That's how I envisioned this working, tick the printer names instead of using CTRL+Click to select the printer names

The last piece would be the Remote Computer name allowing only 14 characters per line yet allowing multiple lines

I wish I would have known about not having to read the entire INI file when I first started this project! 

Link to comment
Share on other sites

  • Moderators

Elephant007,

Here is a script where checking the printer will select them. As to the "Remote Computer" list, I feel the best solution is to have a separate input and a button to add the data - that way you can easily limit the length:

#include <ButtonConstants.au3>
#include <ComboConstants.au3>
#include <EditConstants.au3>

#include <GUIConstantsEx.au3>
#include <GUIListBox.au3>
#include <GUIListView.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>

#Region ### Start Read INI to Array ###
    Global $SINI = "Network_Print_Manager_Printer_List.ini"
    If @error Then MsgBox(4096, "", "Error occurred, probably no INI file.")
#EndRegion ### Start Read INI to Array ###
#Region === Start Campus Type ===
    Local $ACAMPUS = IniReadSection($SINI, "CAMPUS")
    Local $SCAMPUS = ""
    For $I = 1 To $ACAMPUS[0][0]
        $SCAMPUS &= "|" & $ACAMPUS[$I][0]
    Next
#EndRegion === Start Campus Type ===

#Region ### START Koda GUI section ### Form=C:\Users\104438\Desktop\Network.kxf
    $Network = GUICreate("Network Print Manager", 800, 532, 180, 117)
    GUISetFont(11)
    $CCAMPUS_TYPE = GUICtrlCreateLabel("Campus Type", 24, 16, 69, 17)
    $CCOMBO_TYPE = GUICtrlCreateCombo("", 112, 16, 201, 25, BitOR($ES_UPPERCASE, $GUI_SS_DEFAULT_COMBO, $CBS_DROPDOWNLIST))
    GUICtrlSetData(-1, $SCAMPUS)
    Local $CLABEL_LOCATION = GUICtrlCreateLabel("Location", 24, 56, 69, 17)
    GUICtrlSetState(-1, $GUI_HIDE)
    Local $CCOMBO_LOCATION = GUICtrlCreateCombo("", 112, 56, 201, 25, BitOR($ES_UPPERCASE, $GUI_SS_DEFAULT_COMBO, $CBS_DROPDOWNLIST))
    GUICtrlSetState(-1, $GUI_HIDE)
    $CLIST_APRINTER = GUICtrlCreateLabel("List of Available Printers", 424, 16, 116, 17)

    $CLIST_PRINTER = GUICtrlCreateListView("Printers", 344, 40, 281, 461, BitOR($LVS_NOCOLUMNHEADER, $LVS_SHOWSELALWAYS))
    _GUICtrlListView_SetExtendedListViewStyle($CLIST_PRINTER, $LVS_EX_CHECKBOXES)
    _GUICtrlListView_SetColumnWidth($CLIST_PRINTER, 0, 265)

    $LR_GROUP = GUICtrlCreateGroup("", 24, 168, 297, 337)
    Local $CRADIO_LOCAL = GUICtrlCreateRadio("This Computer", 56, 184, 113, 17)
    GUICtrlSetState(-1, $GUI_CHECKED)
    Local $CRADIO_REMOTE = GUICtrlCreateRadio("Remote Computer", 56, 208, 150, 17)

    $CLIST_COMPUTERS = GUICtrlCreateEdit("", 48, 248, 249, 203, BitOR($ES_UPPERCASE, $ES_MULTILINE, $ES_WANTRETURN, $ES_READONLY))
    GUICtrlSetState(-1, $GUI_DISABLE)

    $cList_Input = GUICtrlCreateInput("", 48, 455, 209, 20)
    GUICtrlSetState(-1, $GUI_DISABLE)
    GUICtrlSetLimit(-1, 14)

    $cButton_Input = GUICtrlCreateButton("Add", 258, 455, 40, 20)
    GUICtrlSetState(-1, $GUI_DISABLE)

    GUICtrlCreateGroup("", -99, -99, 1, 1)
    $ADD_RADIO = GUICtrlCreateRadio("Add Printer", 24, 104, 113, 17)
    GUICtrlSetState(-1, $GUI_CHECKED)
    $DELETE_RADIO = GUICtrlCreateRadio("Delete Printer", 24, 128, 113, 17)
    GUISetState(@SW_SHOW)
    $BUTTON_GO = GUICtrlCreateButton('Go', 660, 40, 100, 100)
    GUICtrlSetState(-1, $GUI_DISABLE)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
        Case $CCOMBO_TYPE
            GUICtrlSetState($CLABEL_LOCATION, $GUI_SHOW)
            GUICtrlSetState($CCOMBO_LOCATION, $GUI_SHOW)
            $aLocation = IniReadSection($SINI, GUICtrlRead($CCOMBO_TYPE))
            Local $sLocation = ""
            For $I = 1 To $aLocation[0][0]
                $sLocation &= "|" & $aLocation[$I][0]
            Next
            GUICtrlSetData($CCOMBO_LOCATION, $sLocation)

        Case $CCOMBO_LOCATION

            $PRINTLIST = StringLeft(GUICtrlRead($CCOMBO_LOCATION), 3)

            GUICtrlSetState($CLIST_PRINTER, $GUI_SHOW)
            GUICtrlSetState($BUTTON_GO, $GUI_ENABLE)
            $aPrinters = IniReadSection($SINI, $PRINTLIST)
            For $I = 1 To $aPrinters[0][0]
                GUICtrlCreateListViewItem($aPrinters[$I][0], $CLIST_PRINTER)
            Next

        Case $CRADIO_REMOTE
            GUICtrlSetState($CLIST_COMPUTERS, $GUI_ENABLE)
            GUICtrlSetState($cList_Input, $GUI_ENABLE)
            GUICtrlSetState($cButton_Input, $GUI_ENABLE)
        Case $CRADIO_LOCAL
            GUICtrlSetState($CLIST_COMPUTERS, $GUI_DISABLE)
            GUICtrlSetState($cList_Input, $GUI_DISABLE)
            GUICtrlSetState($cButton_Input, $GUI_DISABLE)
            GUICtrlSetData($CLIST_COMPUTERS, "")
            GUICtrlSetData($cList_Input, "")
        Case $BUTTON_GO

            $iCount = _GUICtrlListView_GetItemCount($CLIST_PRINTER)
            For $I = 0 To $iCount - 1
                ; Ignore if not checked
                If Not _GUICtrlListView_GetItemChecked($CLIST_PRINTER, $I) Then ContinueLoop

                $sPrinter = _GUICtrlListView_GetItemText($CLIST_PRINTER, $I)
                Local $PRINTPATH = IniRead($SINI, $PRINTLIST, $sPrinter, "Error")

                Switch GUICtrlRead($CRADIO_LOCAL) & GUICtrlRead($ADD_RADIO)
                    Case "11" ; LOCAL & ADD
                        $Q = MsgBox(68, "Installing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & @ComputerName)
                        If $Q = 6 Then
                            ConsoleWrite("Installing Local: " & $PRINTPATH & @CRLF)
                            #cs
                                RunWait('rundll32 printui.dll, PrintUIEntry /R /ga /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                                If $SET_DEFAULT = "1" Then
                                Sleep(10000)
                                FileDelete("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\DefaultPrinter.cmd")
                                FileWriteLine("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\DefaultPrinter.cmd", "@ECHO OFF" & @CRLF & 'rundll32 printui.dll, PrintUIEntry /y /n "' & $PRINTPATH & '" /q')
                                RunWait('rundll32 printui.dll, PrintUIEntry /y /n "' & $PRINTPATH & '" /q', "", @SW_SHOW)
                                FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Add LOCAL Printer: """ & $PRINTPATH & """ on Computer: " & @ComputerName & " Set Default: " & $SET_DEFAULT_MSG)
                                EndIf
                            #ce
                        EndIf
                    Case "14" ; LOCAL & DELETE
                        If $Q = 6 Then
                            ConsoleWrite("Deleting Local: " & $PRINTPATH & @CRLF)
                            #cs
                                RunWait('rundll32 printui.dll, PrintUIEntry /gd /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                                FileWriteLine("logs\Network_Print_Manager.log", @MON & '/' & @MDAY & '/' & @YEAR & ' @ ' & @HOUR & ':' & @MIN & ':' & @SEC & '          By: ' & @UserName & ' - Remove LOCAL Printer: "' & $PRINTPATH & '" on Computer: ' & @ComputerName)
                            #ce
                        EndIf

                    Case "41" ; REMOTE & ADD
                        $Q = MsgBox(68, "Installing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & GUICtrlRead($CLIST_COMPUTERS))
                        If $Q = 6 Then

                            ConsoleWrite("Installing Remote: " & $PRINTPATH & @CRLF)
                            #cs
                                RunWait('rundll32 printui.dll, PrintUIEntry /R /ga /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                                If $SET_DEFAULT = "1" Then
                                Sleep(10000)
                                FileWriteLine("C:\Windows\Temp\DefaultPrinter.cmd", "@ECHO OFF" & @CRLF & 'rundll32 printui.dll, PrintUIEntry /y /n "' & $PRINTPATH & '" /q')
                                RunWait('copy "c:\Windows\Temp\DefaultPrinter.cmd" "\\' & GUICtrlRead($CLIST_COMPUTERS) & '\c$\\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp" /y', "", @SW_HIDE)
                                RunWait('rundll32 printui.dll, PrintUIEntry /y /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '" /q', "", @SW_SHOW)
                                FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Add REMOTE Printer: """ & $PRINTPATH & """ on Computer: " & GUICtrlRead($CLIST_COMPUTERS) & " Set Default: " & $SET_DEFAULT_MSG)
                                EndIf
                            #ce
                        EndIf

                    Case "44" ; REMOTE & DELETE
                        $Q = MsgBox(68, "Removing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & GUICtrlRead($CLIST_COMPUTERS))
                        If $Q = 6 Then

                            ConsoleWrite("Deleting Remote: " & $PRINTPATH & @CRLF)
                            #cs
                                RunWait('rundll32 printui.dll, PrintUIEntry /gd /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                                FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Remove REMOTE Printer: """ & $PRINTPATH & """ on Computer: " & GUICtrlRead($CLIST_COMPUTERS))
                            #ce
                        EndIf
                EndSwitch
            Next

        Case $cButton_Input
            GUICtrlSetData($CLIST_COMPUTERS, GUICtrlRead($CLIST_COMPUTERS) & @CRLF & GUICtrlRead($cList_Input))
            GUICtrlSetData($cList_Input, "")


    EndSwitch
WEnd

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

I agree, that is a better solution. This work great, now I have to figure out how to parse the remote computer name to uninstall each printer then continue to the next computer name to install...

This is coming together very nicely and thank you so much for helping me.

Link to comment
Share on other sites

  • Moderators

Elephant007,

Glad I could help - do not hesitate to come back if you run into any further problems.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Is it possible to add radio buttons next to the existing checkboxes or another a second row of checkboxes next to printer names? This way I can use the radio/checkbox to assign the printer as default.

Also, if I know where the computer will be located, how can I auto populate the combobox with High and 002 - Cooper High to generate the available printer list? I'm able to know the campus and location by the first three characters of the computer name. I just haven't figured out how to get the combobox to set correctly

Example:: Computer name 002-C-TEST-S01 automatically populates Campus: HIGH and Location 002 - Cooper High and all of 002 available printers

Again, I was able to accomplish this but I had to create another Ini file with the Key and Values flipped

 

I'm trying!

 

 

 

Link to comment
Share on other sites

  • Moderators

Elephant007,

A second checkbox is a bit difficult - how about doubleclicking a printer in the ListView which then appears in a separate input which is checked when installing:

#include <ButtonConstants.au3>
#include <ComboConstants.au3>
#include <EditConstants.au3>

#include <GUIConstantsEx.au3>
#include <GUIListBox.au3>
#include <GUIListView.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>

#Region ### Start Read INI to Array ###
    Global $SINI = "Network_Print_Manager_Printer_List.ini"
    If @error Then MsgBox(4096, "", "Error occurred, probably no INI file.")
#EndRegion ### Start Read INI to Array ###
#Region === Start Campus Type ===
    Local $ACAMPUS = IniReadSection($SINI, "CAMPUS")
    Local $SCAMPUS = ""
    For $I = 1 To $ACAMPUS[0][0]
        $SCAMPUS &= "|" & $ACAMPUS[$I][0]
    Next
#EndRegion === Start Campus Type ===

#Region ### START Koda GUI section ### Form=C:\Users\104438\Desktop\Network.kxf
    $Network = GUICreate("Network Print Manager", 800, 532, 180, 117)
    GUISetFont(11)
    $CCAMPUS_TYPE = GUICtrlCreateLabel("Campus Type", 24, 16, 69, 17)
    $CCOMBO_TYPE = GUICtrlCreateCombo("", 112, 16, 201, 25, BitOR($ES_UPPERCASE, $GUI_SS_DEFAULT_COMBO, $CBS_DROPDOWNLIST))
    GUICtrlSetData(-1, $SCAMPUS)
    Local $CLABEL_LOCATION = GUICtrlCreateLabel("Location", 24, 56, 69, 17)
    GUICtrlSetState(-1, $GUI_HIDE)
    Local $CCOMBO_LOCATION = GUICtrlCreateCombo("", 112, 56, 201, 25, BitOR($ES_UPPERCASE, $GUI_SS_DEFAULT_COMBO, $CBS_DROPDOWNLIST))
    GUICtrlSetState(-1, $GUI_HIDE)
    $CLIST_APRINTER = GUICtrlCreateLabel("List of Available Printers", 424, 16, 116, 17)

    $CLIST_PRINTER = GUICtrlCreateListView("Printers", 344, 40, 281, 411, BitOR($LVS_NOCOLUMNHEADER, $LVS_SHOWSELALWAYS))
    _GUICtrlListView_SetExtendedListViewStyle($CLIST_PRINTER, $LVS_EX_CHECKBOXES)
    _GUICtrlListView_SetColumnWidth($CLIST_PRINTER, 0, 265)

    GUICtrlCreateLabel("Default", 464, 461, 281, 20)
    $cDef_Printer = GUICtrlCreateInput("", 344, 481, 281, 20, $ES_READONLY)

    $LR_GROUP = GUICtrlCreateGroup("", 24, 168, 297, 337)
    Local $CRADIO_LOCAL = GUICtrlCreateRadio("This Computer", 56, 184, 113, 17)
    GUICtrlSetState(-1, $GUI_CHECKED)
    Local $CRADIO_REMOTE = GUICtrlCreateRadio("Remote Computer", 56, 208, 150, 17)

    $CLIST_COMPUTERS = GUICtrlCreateEdit("", 48, 248, 249, 203, BitOR($ES_UPPERCASE, $ES_MULTILINE, $ES_WANTRETURN, $ES_READONLY))
    GUICtrlSetState(-1, $GUI_DISABLE)

    $cList_Input = GUICtrlCreateInput("", 48, 455, 209, 20)
    GUICtrlSetState(-1, $GUI_DISABLE)
    GUICtrlSetLimit(-1, 14)

    $cButton_Input = GUICtrlCreateButton("Add", 258, 455, 40, 20)
    GUICtrlSetState(-1, $GUI_DISABLE)

    GUICtrlCreateGroup("", -99, -99, 1, 1)
    $ADD_RADIO = GUICtrlCreateRadio("Add Printer", 24, 104, 113, 17)
    GUICtrlSetState(-1, $GUI_CHECKED)
    $DELETE_RADIO = GUICtrlCreateRadio("Delete Printer", 24, 128, 113, 17)
    GUISetState(@SW_SHOW)
    $BUTTON_GO = GUICtrlCreateButton('Go', 660, 40, 100, 100)
    GUICtrlSetState(-1, $GUI_DISABLE)
#EndRegion ### END Koda GUI section ###

GUIRegisterMsg($WM_NOTIFY, "_WM_NOTIFY")

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
        Case $CCOMBO_TYPE
            GUICtrlSetState($CLABEL_LOCATION, $GUI_SHOW)
            GUICtrlSetState($CCOMBO_LOCATION, $GUI_SHOW)
            $aLocation = IniReadSection($SINI, GUICtrlRead($CCOMBO_TYPE))
            Local $sLocation = ""
            For $I = 1 To $aLocation[0][0]
                $sLocation &= "|" & $aLocation[$I][0]
            Next
            GUICtrlSetData($CCOMBO_LOCATION, $sLocation)

        Case $CCOMBO_LOCATION

            $PRINTLIST = StringLeft(GUICtrlRead($CCOMBO_LOCATION), 3)

            GUICtrlSetState($CLIST_PRINTER, $GUI_SHOW)
            GUICtrlSetState($BUTTON_GO, $GUI_ENABLE)
            $aPrinters = IniReadSection($SINI, $PRINTLIST)
            For $I = 1 To $aPrinters[0][0]
                GUICtrlCreateListViewItem($aPrinters[$I][0], $CLIST_PRINTER)
            Next

        Case $CRADIO_REMOTE
            GUICtrlSetState($CLIST_COMPUTERS, $GUI_ENABLE)
            GUICtrlSetState($cList_Input, $GUI_ENABLE)
            GUICtrlSetState($cButton_Input, $GUI_ENABLE)
        Case $CRADIO_LOCAL
            GUICtrlSetState($CLIST_COMPUTERS, $GUI_DISABLE)
            GUICtrlSetState($cList_Input, $GUI_DISABLE)
            GUICtrlSetState($cButton_Input, $GUI_DISABLE)
            GUICtrlSetData($CLIST_COMPUTERS, "")
            GUICtrlSetData($cList_Input, "")
        Case $BUTTON_GO

            $iCount = _GUICtrlListView_GetItemCount($CLIST_PRINTER)
            For $I = 0 To $iCount - 1
                ; Ignore if not checked
                If Not _GUICtrlListView_GetItemChecked($CLIST_PRINTER, $I) Then ContinueLoop

                $sPrinter = _GUICtrlListView_GetItemText($CLIST_PRINTER, $I)

                $bDefault = (($sPrinter = GUICtrlRead($cDef_Printer)) ? True : False)

                Local $PRINTPATH = IniRead($SINI, $PRINTLIST, $sPrinter, "Error")

                Switch GUICtrlRead($CRADIO_LOCAL) & GUICtrlRead($ADD_RADIO)
                    Case "11" ; LOCAL & ADD
                        $Q = MsgBox(68, "Installing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & @ComputerName & @CRLF & "Default = " & $bDefault)
                        If $Q = 6 Then
                            ConsoleWrite("Installing Local: " & $PRINTPATH & @CRLF)
                            #cs
                                RunWait('rundll32 printui.dll, PrintUIEntry /R /ga /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                                If $SET_DEFAULT = "1" Then
                                Sleep(10000)
                                FileDelete("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\DefaultPrinter.cmd")
                                FileWriteLine("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\DefaultPrinter.cmd", "@ECHO OFF" & @CRLF & 'rundll32 printui.dll, PrintUIEntry /y /n "' & $PRINTPATH & '" /q')
                                RunWait('rundll32 printui.dll, PrintUIEntry /y /n "' & $PRINTPATH & '" /q', "", @SW_SHOW)
                                FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Add LOCAL Printer: """ & $PRINTPATH & """ on Computer: " & @ComputerName & " Set Default: " & $SET_DEFAULT_MSG)
                                EndIf
                            #ce
                        EndIf
                    Case "14" ; LOCAL & DELETE
                        If $Q = 6 Then
                            ConsoleWrite("Deleting Local: " & $PRINTPATH & @CRLF)
                            #cs
                                RunWait('rundll32 printui.dll, PrintUIEntry /gd /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                                FileWriteLine("logs\Network_Print_Manager.log", @MON & '/' & @MDAY & '/' & @YEAR & ' @ ' & @HOUR & ':' & @MIN & ':' & @SEC & '          By: ' & @UserName & ' - Remove LOCAL Printer: "' & $PRINTPATH & '" on Computer: ' & @ComputerName)
                            #ce
                        EndIf

                    Case "41" ; REMOTE & ADD
                        $Q = MsgBox(68, "Installing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & GUICtrlRead($CLIST_COMPUTERS) & @CRLF & "Default = " & $bDefault)
                        If $Q = 6 Then

                            ConsoleWrite("Installing Remote: " & $PRINTPATH & @CRLF)
                            #cs
                                RunWait('rundll32 printui.dll, PrintUIEntry /R /ga /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                                If $SET_DEFAULT = "1" Then
                                Sleep(10000)
                                FileWriteLine("C:\Windows\Temp\DefaultPrinter.cmd", "@ECHO OFF" & @CRLF & 'rundll32 printui.dll, PrintUIEntry /y /n "' & $PRINTPATH & '" /q')
                                RunWait('copy "c:\Windows\Temp\DefaultPrinter.cmd" "\\' & GUICtrlRead($CLIST_COMPUTERS) & '\c$\\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp" /y', "", @SW_HIDE)
                                RunWait('rundll32 printui.dll, PrintUIEntry /y /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '" /q', "", @SW_SHOW)
                                FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Add REMOTE Printer: """ & $PRINTPATH & """ on Computer: " & GUICtrlRead($CLIST_COMPUTERS) & " Set Default: " & $SET_DEFAULT_MSG)
                                EndIf
                            #ce
                        EndIf

                    Case "44" ; REMOTE & DELETE
                        $Q = MsgBox(68, "Removing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & GUICtrlRead($CLIST_COMPUTERS))
                        If $Q = 6 Then

                            ConsoleWrite("Deleting Remote: " & $PRINTPATH & @CRLF)
                            #cs
                                RunWait('rundll32 printui.dll, PrintUIEntry /gd /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                                FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Remove REMOTE Printer: """ & $PRINTPATH & """ on Computer: " & GUICtrlRead($CLIST_COMPUTERS))
                            #ce
                        EndIf
                EndSwitch
            Next

        Case $cButton_Input
            GUICtrlSetData($CLIST_COMPUTERS, GUICtrlRead($CLIST_COMPUTERS) & @CRLF & GUICtrlRead($cList_Input))
            GUICtrlSetData($cList_Input, "")


    EndSwitch
WEnd

Func _WM_NOTIFY($hWnd, $iMsg, $wParam, $lParam)

    #forceref $hWnd, $iMsg, $wParam

    ; Struct = $tagNMHDR and "int Item;int SubItem" from $tagNMLISTVIEW
    Local $tStruct = DllStructCreate("hwnd;uint_ptr;int_ptr;int;int", $lParam)
    If @error Then Return

    ; Look for doubleclick
    If BitAND(DllStructGetData($tStruct, 3), 0xFFFFFFFF) = $NM_DBLCLK Then
        ; Get index and text of item
        $iIndex = DllStructGetData($tStruct, 4)
        $sText = _GUICtrlListView_GetItemText($CLIST_PRINTER, $iIndex)
        ; If printer selected
        If _GUICtrlListView_GetItemChecked($CLIST_PRINTER, $iIndex) Then
            ; Set as default
            GUICtrlSetData($cDef_Printer, $sText)
        EndIf
    EndIf
EndFunc

Now if a printer is selected and doubleclicked it will become the default - as you can see from the MsgBox content.

As to the second request, I am afraid I do not understand how you intend getting the computer name - are we talking about the selected entry in the "Remote Computer" list?

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

wow fantastic! I really like double clicking the name to set it as the default printer!!!

The computer name will come from the computer which this program is run on, StringLeft(@ComputerName,3). This will be the behavior that occurs when a users who is not in the correct security group on our domain runs the program on their computer. Users without the correct permissions will be denied use of the "Remote Computer" feature.

Link to comment
Share on other sites

  • Moderators

Elephant007,

Glad you like the idea, I will now get to work on the computer name.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Okay, this is what I have figured out, I'm sure it's dirty, it does work though. I do not have all the processes going yet though. I'm sure you will go bonkers and do some cleaning haha

I had to rewrite the INI file that way I would only have to use one INI...

Change $SHOW_REMOTEBUTTON between YES and NO to see the different behaviors.

NO = User has restricted permissions and can only install printers based on their computer name and only on local computer

YES = User is unrestricted and can install any printer on any computer including local and remote computer

#include <ButtonConstants.au3>
#include <ComboConstants.au3>
#include <EditConstants.au3>
#include <GUIComboboxEx.au3>
#include <GUIConstantsEx.au3>
#include <GUIListBox.au3>
#include <GUIListView.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <array.au3>
#include <file.au3>
#include <AD.au3>

$SHOW_REMOTEBUTTON = "NO" ; Change between NO and YES to change behavior... YES means the user is in the correct security group and unrestricted, NO is the opposite
$CompName="002";StringLeft(@ComputerName,3);simulate computer names

#region ### Start Read INI to Array ###
Global $RCOMPUTER_LIST = "C:\Windows\Temp\ListOfRemoteComputersForInstallingPrintersRemotelyUsingTheNetworkPrintManager.npm"
#Region ### Start Read INI to Array ###
    Global $SINI = "Network_Print_Manager_Printer_List.ini"
    If @error Then MsgBox(4096, "", "2Error occurred, probably no INI file.")
#EndRegion ### Start Read INI to Array ###
#Region === Start Campus Type ===

    If $SHOW_REMOTEBUTTON = "NO" Then

        Switch $CompName
            Case "001", "002", "003", "009", "010"
                $SCAMPUS="High"
            Case "008", "200", "201", "202", "238", "251"
                $SCAMPUS= "Instructional Support"
            Case "044", "045", "047", "048"
                $SCAMPUS="Middle"
            Case "042","088","101","107","117","125","131","138"
                $SCAMPUS="Others"
            Case "080","102","103","104","108","112","113","116","118","120","121","150","151","152","153","155"
                $SCAMPUS="Elementary"
            Case Else
                MsgBox(48,'Not Supported','Computer name not supported'&@CRLF&'Will not fucntion on generically named computers without user being in the proper security group')
                Exit
        EndSwitch
    Else
        Local $ACAMPUS = IniReadSection($SINI, "CAMPUS")
        Local $SCAMPUS = ""
        For $I = 1 To $ACAMPUS[0][0]
            $SCAMPUS &= "|" & $ACAMPUS[$I][0]
        Next
    EndIf


#EndRegion === Start Campus Type ===

#Region ### START Koda GUI section ### Form=C:\Users\104438\Desktop\Network.kxf
    $Network = GUICreate("Network Print Manager", 750, 470, 180, 117)
    GUISetFont(9)
    $CCAMPUS_TYPE = GUICtrlCreateLabel("Campus Type", 24, 16, 69, 17)
    $CCOMBO_TYPE = GUICtrlCreateCombo("", 112, 16, 201, 25, BitOR($ES_UPPERCASE, $GUI_SS_DEFAULT_COMBO, $CBS_DROPDOWNLIST))
    GUICtrlSetData(-1, $SCAMPUS)
    Local $CLABEL_LOCATION = GUICtrlCreateLabel("Location", 24, 46, 69, 17)
    GUICtrlSetState(-1, $GUI_DISABLE)
    Local $CCOMBO_LOCATION = GUICtrlCreateCombo("", 112, 46, 201, 25, BitOR($ES_UPPERCASE, $GUI_SS_DEFAULT_COMBO, $CBS_DROPDOWNLIST))
    GUICtrlSetState(-1, $GUI_DISABLE)

    GUICtrlCreateGroup("", -99, -99, 1, 1)
    $ADD_RADIO = GUICtrlCreateRadio("Add Printer", 24, 85, 113, 17)
    GUICtrlSetState(-1, $GUI_DISABLE)
    $DELETE_RADIO = GUICtrlCreateRadio("Delete Printer", 24, 105, 113, 17)
    GUICtrlSetState(-1,$GUI_DISABLE)

    $LR_GROUP = GUICtrlCreateGroup("", 24, 128, 297, 310)
    Local $CRADIO_LOCAL = GUICtrlCreateRadio("This Computer", 56, 144, 113, 17)
    GUICtrlSetState(-1, $GUI_DISABLE)
    $CRADIO_REMOTE = ""
    Local $CRADIO_REMOTE = GUICtrlCreateRadio("Remote Computer", 56, 165, 150, 17)
        If $SHOW_REMOTEBUTTON = "NO" Then
        GUICtrlSetState($CRADIO_REMOTE,$GUI_HIDE)
    Else
        GUICtrlSetState($CRADIO_REMOTE,$GUI_DISABLE)
    EndIf

    $CLIST_APRINTER = GUICtrlCreateLabel("List of Available Printers", 424, 16, 116, 17)
    GUICtrlSetState(-1,$GUI_DISABLE)

    $CHECK_PRINT = GUICtrlCreateLabel("1. Check the box next to the printer to install", 350, 50)
    GUICtrlSetState(-1,$GUI_DISABLE)

    $CHECK_DEFAULT = GUICtrlCreateLabel("2. Double click printer name to Set As Default",350,70)
    GUICtrlSetState(-1,$GUI_DISABLE)

    $CLIST_COMPUTERS = GUICtrlCreateEdit("", 48, 188, 249, 203, BitOR($ES_UPPERCASE, $ES_MULTILINE, $ES_WANTRETURN, $ES_READONLY))
    GUICtrlSetState(-1, $GUI_DISABLE)

    $cList_Input = GUICtrlCreateInput("", 48, 405, 209, 20, $ES_UPPERCASE)
    GUICtrlSetState(-1, $GUI_DISABLE)
    GUICtrlSetLimit(-1, 14)

    $cButton_Input = GUICtrlCreateButton("Add", 258, 405, 40, 20)
    GUICtrlSetState(-1, $GUI_DISABLE)

    $CLIST_PRINTER = GUICtrlCreateListView("Printers", 344, 90, 270, 300, BitOR($LVS_NOCOLUMNHEADER, $LVS_SHOWSELALWAYS))
    GUICtrlSetState(-1,$GUI_DISABLE)
    _GUICtrlListView_SetExtendedListViewStyle($CLIST_PRINTER, $LVS_EX_CHECKBOXES)
    _GUICtrlListView_SetColumnWidth($CLIST_PRINTER, 0, 265)

    $CLABEL_DEFAULT=GUICtrlCreateLabel("Printer To Set As Default", 345, 395)
    GUICtrlSetState(-1,$GUI_DISABLE)
    $cDef_Printer = GUICtrlCreateInput("", 344, 410, 200, 20, $ES_READONLY)
    $cDef_Print_Clear = GUICtrlCreateButton("Clear Default", 555, 407)
    GUICtrlSetFont(-1,8.5)
    GUICtrlSetState(-1,$GUI_DISABLE)


    $cButton_Reset = GUICtrlCreateButton("Reset All Input", 635, 200)
    GUICtrlSetState(-1,$GUI_DISABLE)

    GUISetState(@SW_SHOW)
    $BUTTON_GO = GUICtrlCreateButton('Go', 630, 40, 100, 100)
    GUICtrlSetState(-1, $GUI_DISABLE)

    If $SHOW_REMOTEBUTTON = "NO" Then Send("{SPACE}")


#EndRegion ### END Koda GUI section ###

GUIRegisterMsg($WM_NOTIFY, "_WM_NOTIFY")

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
        Case $CCOMBO_TYPE
            _GUICtrlListView_DeleteAllItems(GUICtrlGetHandle($CLIST_PRINTER))
            GUICtrlSetState($CLABEL_LOCATION, $GUI_ENABLE)
            GUICtrlSetState($CCOMBO_LOCATION, $GUI_ENABLE)
            $aLocation = IniReadSection($SINI, GUICtrlRead($CCOMBO_TYPE))
            If $SHOW_REMOTEBUTTON = "NO" Then
                    $sLocation=IniRead($SINI,GUICtrlRead($CCOMBO_TYPE),$CompName,"Not Found")
                    GUICtrlSetData($CCOMBO_LOCATION,$sLocation)
                    Send("{TAB}")
                    Send("{SPACE}")
                Else
                    Local $ACAMPUS = IniReadSection($SINI, "CAMPUS")
            Local $sLocation = ""
            For $I = 1 To $aLocation[0][0]
                $sLocation &= "|" & $aLocation[$I][1]
            Next
            GUICtrlSetData($CCOMBO_LOCATION, $sLocation)
            EndIf

        Case $CCOMBO_LOCATION
            _GUICtrlListView_DeleteAllItems(GUICtrlGetHandle($CLIST_PRINTER))
            $PRINTLIST = StringLeft(GUICtrlRead($CCOMBO_LOCATION), 3)
            GUICtrlSetState($CLIST_PRINTER, $GUI_SHOW)
            GUICtrlSetState($ADD_RADIO,$GUI_ENABLE)
            GUICtrlSetState($DELETE_RADIO,$GUI_ENABLE)
            Global $aPrinters = IniReadSection($SINI, $PRINTLIST)
            For $I = 1 To $aPrinters[0][0]
                GUICtrlCreateListViewItem($aPrinters[$I][0], $CLIST_PRINTER)
            Next
        Case $ADD_RADIO
            GUICtrlSetState($CRADIO_LOCAL,$GUI_ENABLE)
            GUICtrlSetState($CRADIO_REMOTE,$GUI_ENABLE)
        Case $DELETE_RADIO
            GUICtrlSetState($CRADIO_LOCAL,$GUI_ENABLE)
            GUICtrlSetState($CRADIO_REMOTE,$GUI_ENABLE)
        Case $CRADIO_REMOTE
            GUICtrlSetState($CLIST_COMPUTERS, $GUI_ENABLE)
            GUICtrlSetState($cList_Input, $GUI_ENABLE)
            GUICtrlSetState($cButton_Input, $GUI_ENABLE + 512)
            GUICtrlSetState($CLIST_APRINTER,$GUI_ENABLE)
            GUICtrlSetState($CLIST_PRINTER,$GUI_ENABLE)
            GUICtrlSetState($BUTTON_GO,$GUI_ENABLE)
            GUICtrlSetState($CHECK_PRINT,$GUI_ENABLE)
            GUICtrlSetState($CHECK_DEFAULT,$GUI_ENABLE)
        Case $CRADIO_LOCAL
            GUICtrlSetState($CLIST_COMPUTERS, $GUI_DISABLE)
            GUICtrlSetState($cList_Input, $GUI_DISABLE)
            GUICtrlSetState($cButton_Input, $GUI_DISABLE)
            GUICtrlSetData($CLIST_COMPUTERS, "")
            GUICtrlSetData($cList_Input, "")
            GUICtrlSetState($CLIST_APRINTER,$GUI_ENABLE)
            GUICtrlSetState($CLIST_PRINTER,$GUI_ENABLE)
            GUICtrlSetState($BUTTON_GO,$GUI_ENABLE)
            GUICtrlSetState($CHECK_PRINT,$GUI_ENABLE)
            GUICtrlSetState($CHECK_DEFAULT,$GUI_ENABLE)
        Case $cDef_Print_Clear
            GUICtrlSetData($cDef_Printer, "")
            GUICtrlSetState($cDef_Print_Clear,$GUI_DISABLE)
            GUICtrlSetState($CLABEL_DEFAULT,$GUI_DISABLE)
            GUICtrlSetState($CLIST_PRINTER,$GUI_UNCHECKED)
        Case $BUTTON_GO
            GUICtrlSetState($cButton_Reset,$GUI_ENABLE)
            $iCount = _GUICtrlListView_GetItemCount($CLIST_PRINTER)
            For $I = 0 To $iCount - 1
                ; Ignore if not checked
                If Not _GUICtrlListView_GetItemChecked($CLIST_PRINTER, $I) Then ContinueLoop

                $sPrinter = _GUICtrlListView_GetItemText($CLIST_PRINTER, $I)

                $bDefault = $sPrinter = GUICtrlRead($cDef_Printer)

                Local $PRINTPATH = IniRead($SINI, $PRINTLIST, $sPrinter, "Error")

                Switch GUICtrlRead($CRADIO_LOCAL) & GUICtrlRead($ADD_RADIO)
                    Case "11" ; LOCAL & ADD
                        $Q = MsgBox(68, "Installing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & @ComputerName & @CRLF & "Default = " & $bDefault)
                        If $Q = 6 Then
                            ConsoleWrite("Installing Local: " & $PRINTPATH & @CRLF)
                            #cs
                                RunWait('rundll32 printui.dll, PrintUIEntry /R /ga /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                                If $SET_DEFAULT = "1" Then
                                Sleep(10000)
                                FileDelete("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\DefaultPrinter.cmd")
                                FileWriteLine("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\DefaultPrinter.cmd", "@ECHO OFF" & @CRLF & 'rundll32 printui.dll, PrintUIEntry /y /n "' & $PRINTPATH & '" /q')
                                RunWait('rundll32 printui.dll, PrintUIEntry /y /n "' & $PRINTPATH & '" /q', "", @SW_SHOW)
                                FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Add LOCAL Printer: """ & $PRINTPATH & """ on Computer: " & @ComputerName & " Set Default: " & $SET_DEFAULT_MSG)
                                EndIf
                            #ce
                        EndIf
                    Case "14" ; LOCAL & DELETE
                        If $Q = 6 Then
                            ConsoleWrite("Deleting Local: " & $PRINTPATH & @CRLF)
                            #cs
                                RunWait('rundll32 printui.dll, PrintUIEntry /gd /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                                FileWriteLine("logs\Network_Print_Manager.log", @MON & '/' & @MDAY & '/' & @YEAR & ' @ ' & @HOUR & ':' & @MIN & ':' & @SEC & '          By: ' & @UserName & ' - Remove LOCAL Printer: "' & $PRINTPATH & '" on Computer: ' & @ComputerName)
                            #ce
                        EndIf

                    Case "41" ; REMOTE & ADD
                        $Q = MsgBox(68, "Installing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & GUICtrlRead($CLIST_COMPUTERS) & @CRLF & "Default = " & $bDefault)
                        If $Q = 6 Then

                            ConsoleWrite("Installing Remote: " & $PRINTPATH & @CRLF)
                            #cs
                                RunWait('rundll32 printui.dll, PrintUIEntry /R /ga /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                                If $SET_DEFAULT = "1" Then
                                Sleep(10000)
                                FileWriteLine("C:\Windows\Temp\DefaultPrinter.cmd", "@ECHO OFF" & @CRLF & 'rundll32 printui.dll, PrintUIEntry /y /n "' & $PRINTPATH & '" /q')
                                RunWait('copy "c:\Windows\Temp\DefaultPrinter.cmd" "\\' & GUICtrlRead($CLIST_COMPUTERS) & '\c$\\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp" /y', "", @SW_HIDE)
                                RunWait('rundll32 printui.dll, PrintUIEntry /y /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '" /q', "", @SW_SHOW)
                                FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Add REMOTE Printer: """ & $PRINTPATH & """ on Computer: " & GUICtrlRead($CLIST_COMPUTERS) & " Set Default: " & $SET_DEFAULT_MSG)
                                EndIf
                            #ce
                        EndIf

                    Case "44" ; REMOTE & DELETE
                        $Q = MsgBox(68, "Removing Printer", "Printer: " & $PRINTPATH & @CRLF & "Computer: " & GUICtrlRead($CLIST_COMPUTERS))
                        If $Q = 6 Then

                            ConsoleWrite("Deleting Remote: " & $PRINTPATH & @CRLF)
                            #cs
                                RunWait('rundll32 printui.dll, PrintUIEntry /gd /c "\\' & GUICtrlRead($CLIST_COMPUTERS) & '" /n "' & $PRINTPATH & '"', "", @SW_SHOW)
                                FileWriteLine("logs\Network_Print_Manager.log", @MON & "/" & @MDAY & "/" & @YEAR & " @ " & @HOUR & ":" & @MIN & ":" & @SEC & "          By: " & @UserName & " - Remove REMOTE Printer: """ & $PRINTPATH & """ on Computer: " & GUICtrlRead($CLIST_COMPUTERS))
                            #ce
                        EndIf
                EndSwitch
            Next
        Case $cButton_Reset
            _GUICtrlComboBoxEx_ResetContent(GUICtrlGetHandle($CCOMBO_TYPE))
            GUICtrlSetData($CCOMBO_TYPE,$SCAMPUS)
            _GUICtrlComboBoxEx_ResetContent(GUICtrlGetHandle($CCOMBO_LOCATION))
            GUICtrlSetState($CLABEL_LOCATION,$GUI_HIDE)
            GUICtrlSetState($CCOMBO_LOCATION,$GUI_HIDE)
            GUICtrlSetState($ADD_RADIO,$GUI_UNCHECKED+$GUI_DISABLE)
            GUICtrlSetState($DELETE_RADIO,$GUI_UNCHECKED+$GUI_DISABLE)
            GUICtrlSetState($CRADIO_LOCAL,$GUI_UNCHECKED+$GUI_DISABLE)
            GUICtrlSetState($CRADIO_REMOTE,$GUI_UNCHECKED+$GUI_DISABLE)
            GUICtrlSetState($BUTTON_GO,$GUI_DISABLE)
            GUICtrlSetState($CLIST_APRINTER,$GUI_DISABLE)
            _GUICtrlListView_DeleteAllItems(GUICtrlGetHandle($CLIST_PRINTER))
            GUICtrlSetState($cButton_Reset,$GUI_DISABLE)
            GUICtrlSetState($CLIST_APRINTER,$GUI_DISABLE)
            GUICtrlSetState($cDef_Printer,$GUI_DISABLE)
        Case $cButton_Input
            FileWriteLine($RCOMPUTER_LIST, GUICtrlRead($CLIST_INPUT) & @CRLF)
            GUICtrlSetData($CLIST_COMPUTERS, GUICtrlRead($CLIST_COMPUTERS) & GUICtrlRead($cList_Input)& @CRLF)
            GUICtrlSetData($cList_Input, "")


    EndSwitch



WEnd

Func _WM_NOTIFY($hWnd, $iMsg, $wParam, $lParam)

    #forceref $hWnd, $iMsg, $wParam

    ; Struct = $tagNMHDR and "int Item;int SubItem" from $tagNMLISTVIEW
    Local $tStruct = DllStructCreate("hwnd;uint_ptr;int_ptr;int;int", $lParam)
    If @error Then Return

    ; Look for doubleclick
    If BitAND(DllStructGetData($tStruct, 3), 0xFFFFFFFF) = $NM_DBLCLK Then
        ; Get index and text of item
        $iIndex = DllStructGetData($tStruct, 4)
        $sText = _GUICtrlListView_GetItemText($CLIST_PRINTER, $iIndex)
        ; If printer selected
        If _GUICtrlListView_GetItemChecked($CLIST_PRINTER, $iIndex) Then
            ; Set as default
            GUICtrlSetData($cDef_Printer, $sText)
            GUICtrlSetState($cDef_Print_Clear,$GUI_ENABLE)
            GUICtrlSetState($CLABEL_DEFAULT,$GUI_ENABLE)
        EndIf
    EndIf
EndFunc
[CAMPUS]
Elementary=0
High=0
Instructional Support=0
Middle=0
Others=0
[Elementary]
080=080 - McMurry
102=102 - Austin
103=103 - Bonham
104=104 - Bowie
108=108 - Dyess
112=112 - Jackson
113=113 - Johnston
116=116 - Lee
118=118 - Long
120=120 - Reagan
121=121 - Taylor
150=150 - Ward
151=151 - Thomas
152=152 - Oritz
153=153 - Bassetti
155=155 - Martinez
[High]
001=001 - Abilene High
002=002 - Cooper High
003=003 - Woodson High
009=009 - Holland High
010=010 - ATEMS High
[Instructional Support]
008=008 - Transportation
101=101 - Adult Education
131=131 - Planetarium
200=200 - Technology Center
201=201 - One AISD Center
202=202 - Technology Support
238=238 - Warehouse
251=251 - Maintenance
[Middle]
044=044 - Madison
045=045 - Mann
047=047 - Clack
048=048 - Craig
[Others]
042=042 - Jefferson Center
088=088 - Taylor County Juvenile Justice
107=107 - Crockett Early Head Start
117=117 - Locust Early Childhood
125=125 - Woodson Early Childhood
138=138 - Woodson Early Head Start
[001]
001-BM-601Scan = \\PrintHigh\001-BM-601Scan
001-BM-BandScan = \\PrintHigh\001-BM-BandScan
001-BM-Rm15Scan = \\PrintHigh\001-BM-Rm15Scan
001-BM-Rm160Scan = \\PrintHigh\001-BM-Rm160Scan
001-BM-Rm225Scan = \\PrintHigh\001-BM-Rm225Scan
001-BM-Rm244Scan = \\PrintHigh\001-BM-Rm244Scan
001-HB-Attn16BW = \\PrintHigh\001-HB-Attn16BW
001-HB-LRC01 = \\PrintHigh\001-HB-LRC01
001-HB-LRC02 = \\PrintHigh\001-HB-LRC02
001-HB-LRCLabBW = \\PrintHigh\001-HB-LRCLabBW
001-HB-LRCStudioLabBW = \\PrintHigh\001-HB-LRCStudioLabBW
001-HB-LRCWkRmBW = \\PrintHigh\001-HB-LRCWkRmBW
001-HB-RegisFax = \\PrintHigh\001-HB-RegisFax
001-HB-Rm119OfficeBW = \\PrintHigh\001-HB-Rm119OfficeBW
001-HB-Rm129BW = \\PrintHigh\001-HB-Rm129BW
001-HB-Rm130BW = \\Printhigh\001-HB-Rm130BW
001-HB-Rm209BW P1 = \\PrintHigh\001-HB-Rm209BW P1
001-HB-Rm209BW P2 = \\PrintHigh\001-HB-Rm209BW P2
001-HB-Rm24BW = \\PrintHigh\001-HB-Rm24BW
001-HB-Rm502BW = \\PrintHigh\001-HB-Rm502BW
001-HB-Rm604BW1 = \\PrintHigh\001-HB-Rm604BW1
001-HB-Rm604BW2 = \\PrintHigh\001-HB-Rm604BW2
001-HC-APSColor = \\Printhigh\001-HC-APSColor
001-HC-CounColor = \\Printhigh\001-HC-CounColor
001-HC-Office302Color = \\PrintHigh\001-HC-Office302Color
001-HC-Rm15Color = \\PrintHigh\001-HC-Rm15Color
001-HC-Rm505Color = \\PrintHigh\001-HC-Rm505Color
001-HM-CafeMFC = \\PrintHigh\001-HM-CafeMFC
001-RB-EngWkRmBW = \\PrintHigh\001-RB-EngWkRmBW
001-RC-LRCWkRmColor = \\PrintHigh\001-RC-LRCWkRmColor
001-XM-Bldg600WC = \\PrintHigh\001-XM-Bldg600WC
001-XM-CounXrx = \\PrintHigh\001-XM-CounXrx
001-XM-FieldXerox = \\printhigh\001-XM-FieldXerox
001-XM-GymWC = \\PrintHigh\001-XM-GymWC
001-XM-LRCWC = \\PrintHigh\001-XM-LRCWC
001-XM-RegisWC = \\PrintHigh\001-XM-RegisWC
001-XM-Rm143Xrx01 = \\PrintXerox\001-XM-Rm143Xrx01
001-XM-Rm143Xrx02 = \\PrintXerox\001-XM-Rm143Xrx02
9th Grade Academy Office-Color = \\PRINT01\Abilene HS-9th Grade Academy-Color Printer
Abilene HS-Room 505-Printer01 = \\PRINT01\Abilene HS-Room 505-Printer01
Abilene HS-Room 505-Printer02 = \\PRINT01\Abilene HS-Room 505-Printer02
Associate Principal Color02 = \\PRINT01\Abilene HS-Associate Principal Secretary-Color Printer02
Asst Principle Secretary Color = \\PRINT01\AHS-APS-Color
Attendance Fax = \\PRINT01\Abilene HS-Attendance Office-Fax
Attendance Office = \\PRINT01\Abilene HS-Attendance Office-Printer
Attn Scanner office 16 = \\PRINT01\Abilene HS-Office 16-Scanner
Attn Scanner office 7 = \\PRINT01\Abilene HS-Office 7-Scanner
Band Office B/W = \\PRINT01\AHS-Band-BW
Band Office Color = \\PRINT01\AHS-Band-Color
Bldg 500 Workroom = \\PRINT01\Abilene HS-Bldg 500 WkRm-Scanner
Business Workroom = \\PRINT01\Abilene HS-Business Workroom-Printer
CTE Office Fax = \\PRINT01\Abilene HS-CTE Office-Fax
Choir Office = \\PRINT01\Abilene HS-Choir Office-Printer
Computer Operator = \\PRINT01\Abilene HS-Computer Operator-Printer
Cool Coun. MFC = \\PRINT01\AHS-COOL-MFC
Counselor Fax = \\PRINT01\Abilene HS-Counselor-Fax
Counselors Office = \\PRINT01\Abilene HS-Counselor Office-Printer
English Workroom Mile 15 = \\PRINT01\Abilene HS-English Workroom-Mile15 Printer
English Workroom(Ricoh) = \\PRINT01\Abilene HS-English WorkRoom-Printer
Field House Color = \\PRINT01\Abilene HS-Field House-Color Printer01
Field House Fax = \\PRINT01\Abilene HS-Field House-Fax
Field House Film Room Color = \\PRINT01\Abilene HS-Field House Film Room-Color Printer
Field House Film Room Color = \\PRINT01\Abilene HS-Field House Film Room-Color Printer
Foreign Lang. WkRm Scanner = \\PRINT01\Abilene HS-ForLang WkRm-Scanner
History Workroom = \\PRINT01\Abilene HS-Hist WkRm-Scanner
LRC Lab = \\PRINT01\Abilene HS-LRC Lab-Printer
LRC Studio = \\PRINT01\Abilene HS-LRC Studio-Printer
LRC Workroom Color = \\PRINT01\Abilene HS-LRC Workroom-Color Printer
LRC p1 = \\PRINT01\Abilene HS-LRC-Printer01
LRC p2 = \\PRINT01\Abilene HS-LRC-Printer02
Math Workroom = \\PRINT01\Abilene HS-Math Workroom-Printer
Math Workroom Fax = \\PRINT01\Abilene HS-Math Workroom-Fax
Micro Lab = \\PRINT01\Abilene HS-LRC Micro Lab-Printer
Mile 128 = \\PRINT01\Abilene HS-Mile 128-BW
Mile 129 = \\PRINT01\AHS-Mile 129-BW
Mile 130 = \\PRINT01\AHS-Mile 130-BW
Mile 131 = \\PRINT01\AHS-Mile 131-BW
Mile 77 = \\PRINT01\Abilene HS-Mile 77-Printer
Mile 78 = \\PRINT01\Abilene HS-Mile 78-Printer
Mile 79 = \\PRINT01\Abilene HS-Mile 79-Printer
Mile 80 = \\PRINT01\Abilene HS-Mile 80-Printer
Mile 81 = \\PRINT01\Abilene HS-Mile 81-Printer
Mile 82 = \\PRINT01\Abilene HS-Mile 82-Printer
Mile 83 = \\PRINT01\Abilene HS-Mile 83-Printer
Mile 84 = \\PRINT01\Abilene HS-Mile 84-Printer
Mile 85 = \\PRINT01\Abilene HS-Mile 85-Printer
Mile 86 = \\PRINT01\Abilene HS-Mile 86-Printer
Nova Net = \\PRINT01\Abilene HS-Nova Net-Mile17 Printer
Office 24 = \\PRINT01\Abilene HS-Office 24-Scanner
Office 26 Attendance MFC = \\PRINT01\AHS-Office 26-MFC
Office 29 = \\PRINT01\Abilene HS-Office 29-Scanner
Office 45 Ag Room MFC = \\PRINT01\AHS-Office 45-MFC
Office 76 MFC = \\PRINT01\AHS-Office76-MFC
Office 78 BB Fax = \\PRINT01\Abilene HS-Office 78-Scanner
Office 78 MFC = \\PRINT01\AHS-Office78-MFC
Portable 1 = \\PRINT01\Abilene HS-Portable 1-Printer
Portable 2 = \\PRINT01\Abilene HS-Portable 2-Printer
Portable 4 Fax = \\PRINT01\Abilene HS-Portable 4-Fax
Registrar = \\PRINT01\Abilene HS-Registrar-Printer
Registrar Fax = \\PRINT01\Abilene HS-Registrar-Fax
Registrar02 = \\PRINT01\Abilene HS-Registrar-Printer02
Room 103 Fax = \\PRINT01\Abilene HS-Room 103-Fax
Room 107 Fax = \\PRINT01\Abilene HS-Room 107-Fax
Room 115 = \\PRINT01\Abilene HS-Room 115-Printer
Room 117 = \\PRINT01\Abilene HS-Room 117-Printer01
Room 120 Fax = \\PRINT01\Abilene HS-Room 120-Fax
Room 141A = \\PRINT01\Abilene HS-Room 141A-Printer
Room 141B = \\PRINT01\Abilene HS-Room 141B-Printer
Room 142 Fax = \\PRINT01\Abilene HS-Room 142-Fax
Room 143 Scanner = \\PRINT01\Abilene HS-Room 143-Scanner
Room 143 Xerox #1 = \\PRINT01\Abilene HS-Room 143-Xerox
Room 143 Xerox #2 = \\PRINT01\Abilene HS-Room 143-Xerox2
Room 144 = \\PRINT01\Abilene HS-Room 144-Mile01 Printer
Room 144 Read 180 = \\PRINT01\Abilene HS-Room 144-180 Printer
Room 146 System 44 = \\PRINT01\Abilene HS-Room 146-sys 44 Printer
Room 147 = \\PRINT01\Abilene HS-Room 147-Scanner
Room 153 = \\PRINT01\Abilene HS-Room 153-Printer
Room 155 = \\PRINT01\Abilene HS-Room 155-Scanner
Room 159 = \\PRINT01\Abilene HS-Room 159-Scanner
Room 201 = \\PRINT01\Abilene HS-Room 201-Printer
Room 203 p1 = \\PRINT01\Abilene HS-Room 203-Printer01
Room 203 p2 = \\PRINT01\Abilene HS-Room 203-Printer02
Room 205 p1 = \\PRINT01\Abilene HS-Room 205-Printer01
Room 205 p2 = \\PRINT01\Abilene HS-Room 205-Printer02
Room 207 Lab Printer = \\PRINT01\Abilene HS-Room 207-Printer01
Room 207 Office = \\PRINT01\Abilene HS-Room 207-Printer03
Room 207 Scanner = \\PRINT01\Abilene HS-Room 207-Scanner
Room 209 p2 = \\PRINT01\Abilene HS-Room 209-Printer02
Room 220 Fax = \\PRINT01\Abilene HS-Room 220-Fax
Room 224 Fax = \\PRINT01\Abilene HS-Room 224-Fax
Room 225 = \\PRINT01\Abilene HS-Room 225-Scanner
Room 226 = \\PRINT01\Abilene HS-Room 226-Printer
Room 228 = \\PRINT01\Abilene HS-Room 228-Printer
Room 241 = \\PRINT01\Abilene HS-Room 241-Printer
Room 243 = \\PRINT01\Abilene HS-Room 243-Printer01
Room 244 Read 180 = \\PRINT01\Abilene HS-Room 244-180 Printer
Room 248 Color = \\PRINT01\Abilene HS-Room 248-Color Printer
Room 249 = \\PRINT01\Abilene HS-Room 249-Printer
Room 253 = \\PRINT01\Abilene HS-Room 253-Printer
Room 502 = \\PRINT01\Abilene HS-Room 502-Printer
Room 508 = \\PRINT01\Abilene HS-Room 508-Printer
Room 508 Plotter = \\PRINT01\Abilene HS-Room 508-Plotter
Room 602 Color = \\PRINT01\Abilene HS-Room 602-Color Printer
Room 604 Color = \\PRINT01\Abilene HS-Room 604-Color Printer
Room 604 p1 = \\PRINT01\Abilene HS-Room 604-Printer01
Room 604 p2 = \\PRINT01\Abilene HS-Room 604-Printer02
Room 609 = \\PRINT01\Abilene HS-Room 609-Printer01
Room 611 = \\PRINT01\Abilene HS-Room 611-Printer01
Room 613 = \\PRINT01\Abilene HS-Room 613-Printer01
Room 614 Fax = \\PRINT01\Abilene HS-Room 614-Fax
SPED Mile 23 = \\PRINT01\Abilene HS-SPED Mile 23-Printer
Science WorkRoom = \\PRINT01\Abilene HS-Science WorkRoom-Printer
SpEd Office = \\PRINT01\Abilene HS-SpEd Office-Fax
YearBook Color-Dell = \\PRINT01\Abilene HS-YearBook-Color Printer
[002]
002-BM-CafeMFC = \\PrintHigh\002-BM-CafeMFC
002-BM-LRCMFC = \\printhigh\002-BM-LRCMFC
002-BM-Rm100Office = \\PrintHigh\002-BM-Rm100Office
002-BM-V12MFC = \\Printhigh\002-BM-V12MFC
002-BM-V2MFC = \\PrintHigh\002-BM-V2MFC
002-HB-311BW01 = \\PrintHigh\002-HB-311BW01
002-HB-311BW02 = \\PrintHigh\002-HB-311BW02
002-HB-EngConfRm = \\PrintHigh\002-HB-EngConfRm
002-HB-ForLangConfRm = \\PrintHigh\002-HB-ForLangConfRm
002-HB-LRC01 = \\PrintHigh\002-HB-LRC01
002-HB-LRC02 = \\PrintHigh\002-HB-LRC02
002-HB-LRC2BW = \\printhigh\002-HB-LRC2BW
002-HB-LRCLab01 = \\Printhigh\002-HB-LRCLab01
002-HB-LRCLab02 = \\Printhigh\002-HB-LRCLab02
002-HB-P1SpEdBW = \\printhigh\002-HB-P1SpEdBW
002-HB-Rm302 = \\PrintHigh\002-HB-RM302
002-HB-RmS29 = \\PrintHigh\002-HB-RmS29
002-HB-S20BW = \\PrintHigh\002-HB-S20BW
002-HB-S25BW = \\PrintHigh\002-HB-S25BW
002-HB-S2P1 = \\Printhigh\002-HB-S2P1
002-HB-S2P2 = \\Printhigh\002-HB-S2P2
002-HB-S3BW = \\PrintHigh\002-HB-S3BW
002-HB-S4BW = \\PrintHigh\002-HB-S4BW
002-HB-TheatreBW = \\PrintHigh\002-HB-TheatreBW
002-HB-V19BW01 = \\PrintHigh\002-HB-V19BW01
002-HB-V19BW02 = \\PrintHigh\002-HB-V19BW02
002-HC-S18Color = \\PrintHigh\002-HC-S18Color
002-RB-LRCLab01 = \\PrintHigh\002-RB-LRCLab01
002-RB-LRCLab02 = \\printhigh\002-RB-LRCLab02
002-RB-P4BW = \\Printhigh\002-RB-P4BW
002-RC-LRCColor = \\PrintHigh\002-RC-LRCColor
002-XM-BandXerox = \\printhigh\002-XM-BandXerox
002-XM-CounOffWC = \\PrintHigh\002-XM-CounOffWC
002-XM-FrAttXerox = \\printhigh\002-XM-FrAttXerox
002-XM-GymXrx = \\printhigh\002-XM-GymXrx
002-XM-V4Xrx = \\PrintXerox\002-XM-V4Xrx
ARD Room = \\PRINT01\Cooper HS-ARD Room-Printer
ART Office Color = \\PRINT01\Cooper HS-Art Office-Color Printer
Academy Principle Scanner = \\PRINT01\Cooper HS-Academy Principle-Scanner
Academy Xerox = \\PRINT01\Cooper HS-Academy-Xerox
Attendance = \\PRINT01\Cooper HS-Attendance-Printer
Band Hall = \\PRINT01\Cooper HS-Band Hall-Printer
Cooper HS-Room S2-Color Printer = \\print01\Cooper HS-Room S2-Color Printer
Copy Room Xerox = \\PRINT01\Cooper HS-Copy Room-Xerox
Copy Room-Xerox2 = \\print01\Cooper HS-Copy Room-Xerox2
Counselor = \\PRINT01\Cooper HS-Counselor-Printer
Counselor Xerox = \\PRINT01\Cooper HS-Counselor-Xerox
Field House = \\PRINT01\Cooper HS-Field House-Printer
Field House Color = \\PRINT01\Cooper HS-Field House-Color Printer
Field House Color2 = \\PRINT01\Cooper HS-Field House-Color Printer2
Field House NEW Color = \\PRINT01\CHS-Field House-NewCP
Field House Xerox = \\PRINT01\Cooper HS-Field House-Xerox
Freshman Attendance = \\PRINT01\Cooper HS-Freshman Attendance-Printer
Gym Classroom G-1 = \\PRINT01\CHS-G1-MFC
Gym Xerox = \\PRINT01\Cooper HS-Gym-Xerox
LRC Fax = \\PRINT01\Cooper HS-LRC-Fax
LRC HP Printer 1(new) = \\PRINT01\CHS-LRC-P01-12
LRC HP Printer 2(new) = \\PRINT01\CHS-LRC-P02-12
LRC Lab P1 = \\PRINT01\Cooper HS-LRC Lab-Printer01
LRC Lab P2 = \\PRINT01\Cooper HS-LRC Lab-Printer02
LRC Mile16 = \\PRINT01\Cooper HS-LRC-Mile16 Printer
LRC Office Fax = \\PRINT01\Cooper HS-LRC Office-Fax
LRC Studio BW = \\PRINT01\CHS-LRC Studio-BW
LRC Workroom Color = \\PRINT01\Cooper HS-LRC Workroom-Color Printer
MILE 96-97 BW = \\PRINT01\CHS-MILE96-97-BW
MILE 98-99 BW = \\PRINT01\CHS-MILE98-99-BW
New Band Hall BW = \\PRINT01\CHS-BandHall-BW
Nova Net = \\PRINT01\Cooper HS-Nova Net-Mile22 Printer
Nurse's Office = \\PRINT01\Cooper HS-Nurse Office-Fax
Portable 2 = \\PRINT01\Cooper HS-Portable 2-Printer
Registrar = \\PRINT01\Cooper HS-Registrar-Printer02
Registrar(Data) = \\PRINT01\Cooper HS-Registrar-Printer01
Room 103 = \\PRINT01\Cooper HS-Room 103-Printer
Room 108-SpEd BW = \\PRINT01\CHS-108-SpEdBW
Room 118 = \\PRINT01\Cooper HS-Room 118-Printer
Room 200 Color = \\PRINT01\Cooper HS-Room 200-Printer
Room 200 Read180 = \\PRINT01\Cooper HS-Room 200-180 Printer
Room 203 p1 = \\PRINT01\Cooper HS-Room 203-Printer01
Room 203 p2 = \\PRINT01\Cooper HS-Room 203-Printer02
Room 207 Color = \\PRINT01\Cooper HS-Room 207-Color Printer
Room 215 Color = \\PRINT01\Cooper HS-Room 215-Color Printer
Room 230 Fax = \\PRINT01\Cooper HS-Room 230-Fax
Room 307 Color = \\PRINT01\Cooper HS-Room 307-Color Printer
Room 311 = \\PRINT01\Cooper HS-Room 311-Printer01
Room 317 = \\PRINT01\Cooper HS-Room 317-Printer
Room 320 = \\PRINT01\Cooper HS-Room 320-Printer
Room S-1 Read180 = \\PRINT01\Cooper HS-Room S1-180 Printer
Room S1 = \\PRINT01\Cooper HS-Room S1-Printer01
Room S10 = \\PRINT01\Cooper HS-Room S10-Printer
Room S11 Color = \\PRINT01\Cooper HS-Room S11-Color Printer
Room S18 Color = \\PRINT01\Cooper HS-Room S18-Color Printer
Room S2 p1 = \\PRINT01\Cooper HS-Room S2-Printer01
Room S2 p2 = \\PRINT01\Cooper HS-Room S2-Printer02
Room S20 p1 = \\PRINT01\Cooper HS-Room S20-Printer01
Room S20 p2 = \\PRINT01\Cooper HS-Room S20-Printer02
Room S3 p1 = \\PRINT01\Cooper HS-Room S3-Printer01
Room S3 p2 = \\PRINT01\Cooper HS-Room S3-Printer02
Room S4 = \\PRINT01\Cooper HS-Room S4-Printer01
Room S7 = \\PRINT01\Cooper HS-Room S7-Printer
Room S7 Fax = \\PRINT01\Cooper HS-Room S7-Fax
Room S9 = \\PRINT01\Cooper HS-Room S9-Printer
Room S9 Printer 02 = \\PRINT01\Cooper HS-Room S9-Printer02
Room S9 Printer 02 = \\PRINT01\Cooper HS-Room S9-Printer02
Room V-21 Read180 = \\PRINT01\Cooper HS-Room V21-180 Printer
Room V1 Fax = \\PRINT01\Cooper HS-Room V1-Color Printer
Room V10 Fax = \\PRINT01\Cooper HS-Room V10 Office-Fax
Room V11 Printer = \\PRINT01\Cooper HS-Room V11-Printer
Room V12 Printer = \\PRINT01\Cooper HS-Room V12-Printer
Room V15 P1 = \\PRINT01\Cooper HS-Room V15-Printer01
Room V15 P2 = \\PRINT01\Cooper HS-Room V15-Printer02
Room V17 Fax = \\PRINT01\Cooper HS-Room V17-Fax
Room V19 P1 = \\PRINT01\Cooper HS-Room V19-Printer01
Room V19 P2 = \\PRINT01\Cooper HS-Room V19-Printer02
Room V21 Printer = \\PRINT01\Cooper HS-Room V21-Printer
Room V3 Classroom = \\PRINT01\Cooper HS-Room V3-Classroom Printer
Room V3 Office = \\PRINT01\Cooper HS-Room V3-Office Printer
Room V8 Fax = \\PRINT01\Cooper HS-Room V8-Fax
Room V9 = \\PRINT01\Cooper HS-Room V9-Printer01
SCIENCE WORKROOM New B/W = \\PRINT01\CHS-SciWkRm-B-W
SPED Mile 24 = \\PRINT01\Cooper HS-SPED Mile 24-Printer
Science Workroom Fax = \\PRINT01\Cooper HS-Science Workroom-Fax
Social Studies Workroom = \\PRINT01\Cooper HS-Social Studies Workroom-Printer
Switchboard Xerox = \\PRINT01\Cooper HS-Switchboard-Xerox
Yearbook Color = \\PRINT01\Cooper HS-Yearbook-Color Printer
Yearbook p1 = \\PRINT01\Cooper HS-Yearbook-Printer01
Yearbook p2 = \\PRINT01\Cooper HS-Yearbook-Printer02
[003]
003-BM- Rm205Scan = \\PrintHigh\003-BM- Rm205Scan
003-BM-CounMFC = \\PrintHigh\003-BM-CounMFC
003-BM-PrinScan = \\PrintHigh\003-BM-PrinScan
003-HB-Rm102BW = \\PrintHigh\003-HB-Rm102BW
003-HM-FrntOfficeFax = \\PrintHigh\003-HM-FrntOfficeFax
003-XM-Rm303XrX = \\PrintHigh\003-XM-Rm303XrX
Assistant Principle Color = \\PRINT01\Woodson Center for Excellence- Assistant Principle Office-Color Printer
Assistant Principles Office MFC = \\PRINT01\Excel-AsstPrinciple-MFC
Copy Room Color = \\PRINT01\Woodson Center for Excellence-Copy Room-Color Printer
Counselor FAX-Scanner = \\PRINT01\Woodson Center for Excellence-CounOffice-Fax
Excel Office Fax = \\PRINT01\Woodson Center for Excellence-Excel Office-Fax
Front Office Fax = \\PRINT01\Woodson Center for Excellence-Front Office-Fax
LRC = \\PRINT01\Woodson Center for Excellence-LRC-Printer
LRC Printer 2 = \\PRINT01\Woodson Center for Excellence-LRC-Printer2
MILE Cart 94-95 Printer = \\PRINT01\Excel-Mile94-95-BW
Main Office Color (Principal) = \\PRINT01\Woodson Center for Excellence-Main Office-Color Printer
Principles Office MFC = \\PRINT01\Excel-Principle-MFC
Rm107-Color = \\Print01\Excel-Rm107-Color
Room 106 = \\PRINT01\Woodson Center for Excellence-Room 106-Printer
Room 107 = \\PRINT01\Woodson Center for Excellence-Room 107-Printer
Room 109 = \\PRINT01\Woodson Center for Excellence-Room 109-Printer
Room 109 Mile13 = \\PRINT01\Woodson Center for Excellence-Room 109-Mile13 Printer
Room 109(New) Workroom Printer = \\PRINT01\Woodson Center for Excellence-Room 109 Workroom-Printer
Room 111 Fax = \\PRINT01\Woodson Center for Excellence-Room 111-Fax
Room 115 Fax = \\PRINT01\Woodson Center for Excellence-Room 115-Fax
Room 19 = \\PRINT01\Woodson Center for Excellence-Room 19-Printer
Room 2 = \\PRINT01\Woodson Center for Excellence-Room 2-Printer
Room 300 Office = \\PRINT01\Woodson Center for Excellence-Room 300-Printer
Room 6 = \\PRINT01\Woodson Center for Excellence-Room 6-Printer
Room 7 = \\PRINT01\Woodson Center for Excellence-Room 7-Printer
Room 8 = \\PRINT01\Woodson Center for Excellence-Room 8-Printer
Room 9 Xerox = \\PRINT01\Woodson Center for Excellence-Room 9-Xerox
WorkRoom 109 Color Printer = \\PRINT01\Excel-Rm109-Color
[008]
Office Color = \\PRINT01\Transportation-Office-Color Printer
Office FAX-Printer = \\PRINT01\Transportation-Office-Fax-Printer
Office Plotter = \\PRINT01\Transportation-Office-Plotter
[009]
009-DB-StuPrint01 = \\PrintHigh\009-DB-StuPrint01
009-HC-DeanColor = \\PrintHigh\009-HC-DeanColor
009-XM-OffXerox = \\printhigh\009-XM-OffXerox
Office = \\PRINT01\Holland Medical High-Office-Printer
Office Color = \\PRINT01\Holland Medical High-Office-Color Printer
Office Fax = \\PRINT01\Holland Medical High-Office-Fax
Room 104 = \\PRINT01\Holland Medical High-Room 104-Printer
Room 107 = \\PRINT01\Holland Medical High-Room 107-Printer
Room 108 = \\PRINT01\Holland Medical High-Room 108-Printer
Room 120 = \\PRINT01\Holland Medical High-Room 120-Printer
Room 121 Color = \\PRINT01\Holland Medical High-Room 121-Color Printer
Room 124 = \\PRINT01\Holland Medical High-Room 124-Printer
Room 125 = \\PRINT01\Holland Medical High-Room 125-Printer
Room 125 New = \\PRINT01\Holland Medical High-Room 125-Printer2
[010]
010-BM-ICMFC = \\PrintHigh\010-BM-ICMFC
010-BM-Recpt = \\PrintHigh\010-BM-Recpt
010-BM-Rm212 = \\PrintHigh\010-BM-Rm212
010-HB-Rm239 = \\PrintHigh\010-HB-Rm239
010-HB-Rm250cBW = \\PrintHigh\010-HB-Rm250cBW
010-HC-CounColor = \\PrintHigh\010-HC-CounColor
010-HC-DirOff = \\PrintHigh\010-HC-DirOff
010-HC-Rm214 = \\PrintHigh\010-HC-Rm214
010-HC-Rm231 = \\PrintHigh\010-HC-Rm231
010-HC-Rm250Color = \\PrintHigh\010-HC-Rm250Color
010-HC-SecColor = \\PrintHigh\010-HC-SecColor
010-RB-CounOff = \\PrintHigh\010-RB-CounOff
010-RB-ICOff = \\PrintHigh\010-RB-ICOff
010-RB-Rm230 = \\PrintHigh\010-RB-Rm230
010-RB-Rm241 = \\PrintHigh\010-RB-Rm241
010-RB-Rm250bBW = \\PrintHigh\010-RB-Rm250bBW
010-RB-Rm260 = \\PrintHigh\010-RB-Rm260
010-RB-WkRmBW = \\PrintHigh\010-RB-WkRmBW
010-XM-WrkrmXrx = \\printhigh\010-XM-WrkrmXrx
1st Floor Color = \\PRINT01\New Tech HS-1st Floor-Color Printer
Front Receptionist MFC = \\PRINT01\ATEMS-Recpt-MFC
OFFICE 143 MFC = \\PRINT01\ATEMS-143-MFC
Office Fax = \\PRINT01\New Tech HS-Office-Fax
Room 212 MFC = \\PRINT01\ATEMS-212-MFC
Room 231-Lab = \\PRINT01\New Tech HS-Room 231-Lab
Room 233 = \\PRINT01\New Tech HS-Room 233-Printer
Room 236-Counselor Office = \\PRINT01\New Tech HS-Room 236-Counselor Office
Room 239-Meeting Room = \\PRINT01\New Tech HS-Room 239-Meeting Room
Room 241 = \\PRINT01\New Tech HS-Room 241
Room 250 = \\PRINT01\New Tech HS-Room 250
Room 250B = \\PRINT01\New Tech HS-Room 250B
Room 250B Color = \\PRINT01\New Tech HS-Room 250B-Color Printer
Room 250B Mr Nease's Color = \\PRINT01\ATEMS-250B-Color
Room 251 WkRm Color = \\PRINT01\New Tech HS-Room 251-Color Printer
Room 260 = \\PRINT01\New Tech HS-Room 260
Xerox = \\PRINT01\New Tech HS-Xerox
[042]
042-HB-Rm109BW = \\printmiddle\042-HB-Rm109BW
042-HC-Office119Color = \\printmiddle\042-HC-Office119Color
042-HC-Office123AColor = \\printmiddle\042-HC-Office123AColor
042-HC-Office124Color = \\printmiddle\042-HC-Office124Color
042-HM-GroundsShopMFC = \\printmiddle\042-HM-GroundsShopMFC
042-XM-OffXerox = \\Printmiddle\042-xm-OffXerox
042-XM-Rm126A = \\printmiddle\042-XM-Rm126A
042-XM-Rm126B = \\printmiddle\042-XM-Rm126B
Admin Office 1 = \\PRINT01\Jefferson Center-Rm 124-Admin1-Color Printer
Admin Office 2 = \\PRINT01\Jefferson Center-Rm 123-Admin2-Printer
Counselors Office = \\PRINT01\Jefferson Center-Counselors Office-Printer
LRC LAB = \\PRINT01\Jefferson Center-LRC Lab-Printer
Main Office Xerox = \\PRINT01\Jefferson Center-Main Office-Xerox
Rm128 SpEd Office = \\PRINT01\Jefferson Center-Rm 128 SpEd Office-Fax
Room 109 = \\PRINT01\Jefferson Center-Rm 109-Printer
Room 119 = \\PRINT01\Jefferson Center-Rm 119-CP
Room 147 = \\PRINT01\Jefferson Center-Rm 147-Printer
Room 170 = \\PRINT01\Jefferson Center-Rm 170-Printer
Teacher workroom = \\PRINT01\Jefferson Center-Rm 126- Teacher WkRm-Printer
Workroom Xerox = \\PRINT01\Jefferson Center-Teacher WkRm-Xerox
[044]
044--HB-Rm2BW = \\PrintMiddle\044--HB-Rm2BW
044--HB-Rm4BW = \\PrintMiddle\044--HB-Rm4BW
044--HB-Rm7BW = \\PrintMiddle\044--HB-Rm7BW
044--HB-Rm8BW = \\PrintMiddle\044--HB-Rm8BW
044-BM-Rm22Scan = \\PrintMiddle\044-BM-Rm22Scan
044-BM-Rm7Scan = \\PrintMiddle\044-BM-Rm7Scan
044-BM-RmV2Scan = \\PrintMiddle\044-BM-RmV2Scan
044-HB-FrntOffBW = \\PrintMiddle\044-HB-FrntOffBW
044-HB-GirlsGymBW = \\PrintMiddle\044-HB-GirlsGymBW
044-HB-LRCBW = \\PrintMiddle\044-HB-LRCBW
044-HB-Rm13BW = \\PrintMiddle\044-HB-Rm13BW
044-HB-Rm24BW = \\PrintMiddle\044-HB-Rm24BW
044-HB-RmF1BW = \\printmiddle\044-HB-RmF1BW
044-HB-RmV2BW = \\PrintMiddle\044-HB-RmV2BW
044-HC-CounColor = \\PrintMiddle\044-HC-CounColor
044-RB-RmF1BW = \\PrintMiddle\044-RB-RmF1BW
044-XM-OffXerox = \\PrintMiddle\044-XM-OffXerox
Clinic MFC = \\PRINT01\Madison-Clinic-MFC
Counselor = \\PRINT01\Madison MS-Counselor-Printer
Counselor Office = \\PRINT01\Madison MS-Counselor office-Printer
LRC = \\PRINT01\Madison MS-LRC-Printer01
Office = \\PRINT01\Madison MS-Office-Printer
Office Color = \\PRINT01\Madison MS-Office-Color Printer
Portable 11-Read 180 = \\PRINT01\Madison MS-Portable 11-180 Printer
Portable 2 MFC = \\PRINT01\Madison-P2-MFC
Portable 8 = \\PRINT01\Madison MS-Room P8-Printer-Scanner
Principles office Color = \\PRINT01\Madison MS-Room 14-Color Printer
Room 11 = \\PRINT01\Madison MS-Room 11-Printer
Room 16 = \\PRINT01\Madison MS-Room 16-Printer
Room 17-Read 180 = \\PRINT01\Madison MS-Room 17-180 Printer
Room 18 = \\PRINT01\Madison MS-Room 18-Printer
Room 22 p1 = \\PRINT01\Madison MS-Room 22-Printer01
Room 22 p2 = \\PRINT01\Madison MS-Room 22-Printer02
Room 24 = \\PRINT01\Madison MS-Room 24-Printer
Room 24 Yearbook Color = \\PRINT01\Madison MS-Room 24-Yearbook Color Printer
Room 26 = \\PRINT01\Madison MS-Room 26-Printer
Room 26-Read 180 = \\PRINT01\Madison MS-Room 26-180 Printer
Room 27 = \\PRINT01\Madison MS-Room 27-Printer-Scanner
Room 28A Fax = \\PRINT01\Madison MS-Room 28A-Fax
Room 29A COLOR = \\PRINT01\Madison MS-Room 29a-Color Printer
Room 2A (SPED Off) = \\PRINT01\Madison MS-Room 2A-Printer
Room 2B (Confer room) = \\PRINT01\Madison MS-Room 2B-Printer
Room 35A = \\PRINT01\Madison MS-Room 35A-Printer
Room 7 = \\PRINT01\Madison MS-Room 7-Printer
Room V2 p1 = \\PRINT01\Madison MS-Room V2-Printer01
Room V2 p2 = \\PRINT01\Madison MS-Room V2-Printer02
Workroom Printer = \\PRINT01\Madison MS-Workroom-Printer
Workroom Xerox 01 = \\PRINT01\Madison MS-Workroom-Xerox01
Workroom Xerox 02 = \\PRINT01\Madison MS-Workroom-Xerox02
[044]
044--HB-Rm2BW = \\PrintMiddle\044--HB-Rm2BW
044--HB-Rm4BW = \\PrintMiddle\044--HB-Rm4BW
044--HB-Rm7BW = \\PrintMiddle\044--HB-Rm7BW
044--HB-Rm8BW = \\PrintMiddle\044--HB-Rm8BW
044-BM-Rm22Scan = \\PrintMiddle\044-BM-Rm22Scan
044-BM-Rm7Scan = \\PrintMiddle\044-BM-Rm7Scan
044-BM-RmV2Scan = \\PrintMiddle\044-BM-RmV2Scan
044-HB-FrntOffBW = \\PrintMiddle\044-HB-FrntOffBW
044-HB-GirlsGymBW = \\PrintMiddle\044-HB-GirlsGymBW
044-HB-LRCBW = \\PrintMiddle\044-HB-LRCBW
044-HB-Rm13BW = \\PrintMiddle\044-HB-Rm13BW
044-HB-Rm24BW = \\PrintMiddle\044-HB-Rm24BW
044-HB-RmF1BW = \\printmiddle\044-HB-RmF1BW
044-HB-RmV2BW = \\PrintMiddle\044-HB-RmV2BW
044-HC-CounColor = \\PrintMiddle\044-HC-CounColor
044-RB-RmF1BW = \\PrintMiddle\044-RB-RmF1BW
044-XM-OffXerox = \\PrintMiddle\044-XM-OffXerox
Clinic MFC = \\PRINT01\Madison-Clinic-MFC
Counselor = \\PRINT01\Madison MS-Counselor-Printer
Counselor Office = \\PRINT01\Madison MS-Counselor office-Printer
LRC = \\PRINT01\Madison MS-LRC-Printer01
Office = \\PRINT01\Madison MS-Office-Printer
Office Color = \\PRINT01\Madison MS-Office-Color Printer
Portable 11-Read 180 = \\PRINT01\Madison MS-Portable 11-180 Printer
Portable 2 MFC = \\PRINT01\Madison-P2-MFC
Portable 8 = \\PRINT01\Madison MS-Room P8-Printer-Scanner
Principles office Color = \\PRINT01\Madison MS-Room 14-Color Printer
Room 11 = \\PRINT01\Madison MS-Room 11-Printer
Room 16 = \\PRINT01\Madison MS-Room 16-Printer
Room 17-Read 180 = \\PRINT01\Madison MS-Room 17-180 Printer
Room 18 = \\PRINT01\Madison MS-Room 18-Printer
Room 22 p1 = \\PRINT01\Madison MS-Room 22-Printer01
Room 22 p2 = \\PRINT01\Madison MS-Room 22-Printer02
Room 24 = \\PRINT01\Madison MS-Room 24-Printer
Room 24 Yearbook Color = \\PRINT01\Madison MS-Room 24-Yearbook Color Printer
Room 26 = \\PRINT01\Madison MS-Room 26-Printer
Room 26-Read 180 = \\PRINT01\Madison MS-Room 26-180 Printer
Room 27 = \\PRINT01\Madison MS-Room 27-Printer-Scanner
Room 28A Fax = \\PRINT01\Madison MS-Room 28A-Fax
Room 29A COLOR = \\PRINT01\Madison MS-Room 29a-Color Printer
Room 2A (SPED Off) = \\PRINT01\Madison MS-Room 2A-Printer
Room 2B (Confer room) = \\PRINT01\Madison MS-Room 2B-Printer
Room 35A = \\PRINT01\Madison MS-Room 35A-Printer
Room 7 = \\PRINT01\Madison MS-Room 7-Printer
Room V2 p1 = \\PRINT01\Madison MS-Room V2-Printer01
Room V2 p2 = \\PRINT01\Madison MS-Room V2-Printer02
Workroom Printer = \\PRINT01\Madison MS-Workroom-Printer
Workroom Xerox 01 = \\PRINT01\Madison MS-Workroom-Xerox01
Workroom Xerox 02 = \\PRINT01\Madison MS-Workroom-Xerox02
[045]
045-BM-RmB5Scan = \\PrintMiddle\045-BM-RmB5Scan
045-BM-RmB6MFC = \\PrintMiddle\045-BM-RmB6MFC
045-HB-A5BW = \\PrintMiddle\045-HB-A5BW
045-HB-B9BW = \\PrintMiddle\045-HB-B9BW
045-HB-LRCBW02 = \\PrintMiddle\045-HB-LRCBW02
045-HB-P2BW = \\PrintMiddle\045-HB-P2BW
045-HB-PrincipleBW = \\PrintMiddle\045-HB-PrincipleBW
045-HB-RmB13BW = \\PrintMiddle\045-HB-RmB13BW
045-HB-RmD2BW = \\PrintMiddle\045-HB-RmD2BW
045-HB-RmD4BW = \\PrintMiddle\045-HB-RmD4BW
045-HB-RmD7BW = \\PrintMiddle\045-HB-RmD7BW
045-HB-V2BW01 = \\PrintMiddle\045-HB-V2BW01
045-HB-V2BW02 = \\PrintMiddle\045-HB-V2BW02
045-RB-RmB15BW = \\PrintMiddle\045-RB-RmB15BW
045-XM-CounXerox = \\PrintMiddle\045-XM-CounXerox
045-XM-OffXerox = \\PrintMiddle\045-XM-OffXerox
Athletic Office Fax = \\PRINT01\Mann MS-Athletic Office-Fax
Band Office Fax = \\PRINT01\Mann MS-Band Office-Fax
Boys Coaches Office B/W = \\PRINT01\Mann-CoachesOff-BW
Counselor Office Fax = \\PRINT01\Mann MS-Counselor Office-Fax
Girls Gym Office = \\PRINT01\Mann MS-Girls Gym Office-Printer
LRC Color = \\PRINT01\Mann MS-LRC-Color Printer
LRC-Printer01 = \\PRINT01\Mann MS-LRC-Printer01
LRC-Printer02 = \\PRINT01\Mann MS-LRC-Printer02
Office = \\PRINT01\Mann MS-Office-Printer01
Office Color = \\PRINT01\Mann MS-Office-Color Printer
Orchestra room = \\PRINT01\Mann MS-Orchestra-Printer
Room A16 = \\PRINT01\Mann MS-Room A16-Printer
Room A17 Fax = \\PRINT01\Mann MS-Room A17-Fax
Room A18 = \\PRINT01\Mann MS-Room A18-Printer
Room A3 = \\PRINT01\Mann MS-Room A3-Printer
Room B3 = \\PRINT01\Mann MS-Room B3-Printer
Room B4 = \\PRINT01\Mann MS-Room B4-Printer01
Room B5 NEW B/W = \\PRINT01\Mann-B5-BW
Room B5 color = \\PRINT01\Mann MS-Room B5-Color Printer
Room B6 = \\PRINT01\Mann MS-Room B6-Printer01
Room B7 = \\PRINT01\Mann MS-Room B7-Printer
Room B7 Color (Print01) = \\PRINT01\Mann MS-Room B7-Color Printer
Room B7 Color (Print01) = \\PRINT01\Mann MS-Room B7-Color Printer
Room B7 Color = \\PRINT01\Mann MS-Room B7-Color Printer
Room C1 = \\PRINT01\Mann MS-Room C1-Printer
Room C1 Xerox = \\PRINT01\Mann MS-Room C1-Xerox
Room D-9 Sys 44 = \\PRINT01\Mann MS-Room D9-sys144 Printer
Workroom Xerox = \\PRINT01\Mann MS-Workroom-Xerox
[047]
047-BM-Rm174Scan = \\PrintMiddle\047-BM-Rm174Scan
047-BM-Rm175Scan = \\PrintMiddle\047-BM-Rm175Scan
047-BM-Rm175Scan = \\PrintMiddle\047-BM-Rm175Scan
047-CC-LFP = \\printmiddle\047-CC-LFP
047-HB-Lab174BW = \\printmiddle\047-HB-Lab174BW
047-HB-Mile136BW = \\PrintMiddle\047-HB-Mile136BW
047-HB-Rm137BW = \\printmiddle\047-HB-Rm137BW
047-HB-Rm138BW = \\printmiddle\047-HB-Rm138BW
047-HB-Rm139BW = \\printmiddle\047-HB-Rm139BW
047-HB-Rm140BW = \\printmiddle\047-HB-Rm140BW
047-HB-Rm142BW = \\printmiddle\047-HB-Rm142BW
047-HB-Rm150BW = \\printmiddle\047-HB-Rm150BW
047-HB-Rm169BW = \\printmiddle\047-HB-Rm169BW
047-HB-Rm170BW = \\printmiddle\047-HB-Rm170BW
047-HB-Rm170BW2 = \\printmiddle\047-HB-Rm170BW2
047-HB-Rm172BW = \\printmiddle\047-HB-Rm172BW
047-HB-Rm199BW = \\PrintMiddle\047-HB-Rm199BW
047-RB-Rm120BW = \\printmiddle\047-RB-Rm120BW
047-RB-Rm175BW = \\PrintMiddle\047-RB-Rm175BW
047-XM-CounsXrx = \\printmiddle\047-XM-CounsXrx
047-XM-OffXerox = \\printmiddle\047-XM-OffXerox
047-XM-Rm111Xrx = \\printmiddle\047-XM-Rm111Xrx
Boys Gym Office = \\PRINT01\Clack MS-Boys Gym Office-Printer
Girls Gym Office = \\PRINT01\Clack MS-Girls Gym Office-Printer
LRC = \\PRINT01\Clack MS-LRC-Printer01
LRC Mile04 = \\PRINT01\Clack Ms-LRC-Mile04 Printer
LRC Mile09 = \\PRINT01\Clack Ms-LRC-Mile09 Printer
LRC Mile10 = \\PRINT01\Clack Ms-LRC-Mile10 Printer
LRC-Color = \\PRINT01\Clack MS-LRC-Color Printer
Office Clerical = \\PRINT01\Clack MS-Office-Clerical Printer
Office Color = \\PRINT01\Clack MS-Office-Printer
Rm 168 BW = \\PRINT01\Clack-Rm 168-BW
Room 100 = \\PRINT01\Clack Ms-Room 100-Printer
Room 111 = \\PRINT01\Clack MS-Room 111-Printer
Room 113 p1 = \\PRINT01\Clack MS-Room 113-Printer01
Room 113 p2 = \\PRINT01\Clack MS-Room 113-Printer02
Room 120 = \\PRINT01\Clack Ms-Room 120-Printer
Room 137 COLOR Printer = \\Print01\Clack MS-Room 137-Color Printer
Room 164 = \\PRINT01\Clack Ms-Room 164-Printer
Room 172 = \\PRINT01\Clack Ms-Room 172-Printer
Room 174 p1 = \\PRINT01\Clack Ms-Room 174-Printer01
Room 174 p2 = \\PRINT01\Clack Ms-Room 174-Printer02
Room 175 = \\PRINT01\Clack Ms-Room 175-Printer
Room 175 Color = \\PRINT01\Clack Ms-Room 175-Color Printer
Room 176-180 lab = \\PRINT01\Clack MS-Room 176-180 Printer
Room 200-180 lab = \\PRINT01\Clack MS-Room 200-180 Printer
Room 201 = \\PRINT01\Clack MS-Room 201-Printer
Room 207 RM Lab = \\PRINT01\Clack MS-Room 207-RM Printer
Room 208 RM Lab = \\PRINT01\Clack MS-Room 208-RM Printer
Room 209 = \\PRINT01\Clack MS-Room 209-Printer
Room 209 RM Lab = \\PRINT01\Clack MS-Room 209-RM Printer
Room 219-RM lab = \\PRINT01\Clack MS-Room 219-RM Printer
Teacher Workroom 138 = \\PRINT01\Clack MS-Room 138-TW-Printer
Teacher Workroom 150 = \\PRINT01\Clack MS-Room 150-TW-Printer
Teacher Workroom 162 = \\PRINT01\Clack MS-Room 162-TW-Printer
Workroom Xerox = \\PRINT01\Clack Ms-Workroom-Xerox
[048]
048-BM-ChoirScan = \\printmiddle\048-BM-ChoirScan
048-BM-CounFax = \\printmiddle\048-BM-CounFax
048-BM-Rm401Scan = \\PrintMiddle\048-BM-Rm401Scan
048-BM-Rm404Scan = \\PrintMiddle\048-BM-Rm404Scan
048-BM-Rm627MFC = \\PrintMiddle\048-BM-Rm627MFC
048-BM-Rm628Scan = \\PrintMiddle\048-BM-Rm628Scan
048-CC-LFP = \\printmiddle\048-CC-LFP
048-HB-GirlCoachBW = \\printmiddle\048-HB-GirlCoachBW
048-HB-Mile134BW = \\PrintMiddle\048-HB-Mile134BW
048-HB-Mile135BW = \\PrintMiddle\048-HB-Mile135BW
048-HB-Rm104BW = \\printmiddle\048-HB-Rm104BW
048-HB-Rm105BW = \\printmiddle\048-HB-Rm105BW
048-HB-Rm108BW = \\printmiddle\048-HB-Rm108BW
048-HB-Rm109BW = \\printmiddle\048-HB-Rm109BW
048-HB-Rm201BW = \\PrintMiddle\048-HB-Rm201BW
048-HB-Rm401BW = \\printmiddle\048-HB-Rm401BW
048-HB-Rm428BW = \\printmiddle\048-HB-Rm428BW
048-HB-Rm629BW = \\printmiddle\048-HB-Rm629BW
048-HC-LRCColor = \\printmiddle\048-HC-LRCColor
048-RB-Rm519BW01 = \\printmiddle\048-RB-Rm519BW01
048-RB-Rm519BW02 = \\printmiddle\048-RB-Rm519BW02
048-RB-Rm519BW03 = \\printmiddle\048-RB-Rm519BW03
048-RB-Rm614BW = \\PrintMiddle\048-RB-Rm614BW
048-RC-Rm201Color = \\PrintMiddle\048-RC-Rm201Color
COW Printer = \\PRINT01\Craig MS-COW-Printer
Counselor Office = \\PRINT01\Craig MS-Counselor-Office Printer
Counselor Office Color = \\PRINT01\Craig MS-Counselor-Color Printer
Counselor Printer1 = \\PRINT01\Craig MS-Counselor-Printer01
Counselor Printer2 = \\PRINT01\Craig MS-Counselor-Printer02
Craig MS-Room 307-Printer = \\print01\Craig MS-Room 307-Printer
Gym Office = \\PRINT01\Craig MS-Gym Office-Printer
LRC = \\PRINT01\Craig MS-LRC-Printer
LRC Color = \\print01\Craig MS-LRC-Color Printer
Main Office = \\PRINT01\Craig MS-Main Office-Printer
Office Color = \\PRINT01\Craig MS-Office-Color Printer
Office Fax = \\PRINT01\Craig MS-Office-Fax
Office Fax02 = \\PRINT01\Craig MS-Office-Fax02
Office Plotter = \\PRINT01\Craig MS-Office-Plotter
Principal = \\PRINT01\Craig MS-Principal-Printer
Room 101 = \\PRINT01\Craig MS-Room 101-Printer01
Room 117 = \\PRINT01\Craig MS-Room 117-Printer
Room 201-BW = \\PRINT01\Craig MS-Room 201-Printer02
Room 201-Color = \\PRINT01\Craig MS-Room 201-Color Printer
Room 210 = \\PRINT01\Craig-Rm 210-BW
Room 218 = \\PRINT01\Craig MS-Room 218-Printer
Room 304 = \\PRINT01\Craig MS-Room 304-Printer
Room 305 = \\PRINT01\Craig MS-Room 305-Printer
Room 306 Read 180 = \\PRINT01\Craig MS-Room 306-Read 180Printer
Room 312 = \\PRINT01\Craig-Rm 312-BW
Room 401 = \\PRINT01\Craig MS-Room 401-Printer01
Room 414 = \\PRINT01\Craig MS-Room 414-Printer
Room 428 = \\PRINT01\Craig MS-Room 428-Printer
Room 429 Counselor Fax = \\PRINT01\Craig MS-Room 429-Fax
Room 519 Printer 1 = \\PRINT01\Craig MS-Room 519-Printer01
Room 519 Printer 2 = \\PRINT01\Craig MS-Room 519-Printer02
Room 519 Printer 3 = \\PRINT01\Craig MS-Room 519-Printer03
Room 627 = \\PRINT01\Craig MS-Room 627-Printer
Room 628 Printer 1 = \\PRINT01\Craig MS-Room 628-Printer01
Room 628 Printer 2 = \\PRINT01\Craig MS-Room 628-Printer02
Room 629 = \\PRINT01\Craig MS-Room 629-Printer
Room 630 = \\PRINT01\Craig MS-Room 630-Printer
Room 643 = \\PRINT01\Craig MS-Room 643-Printer
Room 707 = \\PRINT01\Craig MS-Room 707-Printer
Xerox 01 = \\PRINT01\Craig MS-Workroom-Xerox01
Xerox 02 = \\PRINT01\Craig MS-Workroom-Xerox02
[080]
080-MC-MagnetColor = \\Printelem\080-MC-MagnetColor
Room 152 Color = \\PRINT01\McMurry-Room 152-Color Printer
[088]
No Printers Available=None
[101]
101-XM-WorkroomXerox = \\printadmin\101-XM-WorkroomXerox
Alta Vista-LAB Color Printer = \\Print01\Alta Vista-Room Lab-Color Printer
Alta Vista-Room 24-Color Printer(Not Lab) = \\print01\Alta Vista-Room 24-Color Printer
Alta Vista-Room 24-Xerox = \\print01\Alta Vista-Room 24-Xerox
Alta Vista-Workroom-Color Printer = \\print01\Alta Vista-Workroom-Color Printer
[102]
102-BM-ARDMFC = \\printelem\102-BM-ARDMFC
102-HB-LRCBW = \\Printelem\102-HB-LRCBW
102-HB-Rm 39 Lab2 = \\Printelem\102-HB-Rm 39 Lab2
102-HC-CounColor = \\printelem\102-HC-CounColor
102-HC-KinderColor = \\printelem\102-HC-KinderColor
102-HC-TechLabColor = \\printelem\102-HC-TechLabColor
Counselor's Hall Color = \\PRINT01\Austin El-Counselors Hall-Color Printer
Gym Color = \\PRINT01\Austin EL-GYM Color
Gym Office = \\PRINT01\Austin El-Gym Office-Printer
Kindergarten Color = \\PRINT01\Austin El-Kindergarten-Color Printer
LRC = \\PRINT01\Austin El-LRC-Printer
Lab = \\PRINT01\Austin El-LAB-Printer01
Lab-Color Printer = \\Print01\Austin El-Lab-Color Printer
Office Xerox = \\PRINT01\Austin El-Office-Xerox
Room 13 Fax = \\PRINT01\Austin El-Room 13-Fax
Room 34 Teacher Printer = \\PRINT01\Austin El-Room 34-Teacher Printer
Room 45 = \\PRINT01\Austin El-Room 45-Printer
Workroom Xerox01 = \\PRINT01\Austin El-Workroom-Xerox01
Workroom Xerox02 = \\PRINT01\Austin El-Workroom-Xerox02
[103]
103-BM-ICMFC = \\PrintElem\103-BM-ICMFC
103-HB-Rm1BW = \\printElem\103-HB-Rm1BW
103-HB-Rm23Lab = \\PrintElem\103-HB-Rm23Lab
103-HC-OfficeColor = \\printelem\103-HC-OfficeColor
103-HC-TechLabColor = \\printelem\103-HC-TechLabColor
103-XM-OffXrx = \\PrintElem\103-XM-OffXrx
103-XM-Rm22XrX = \\PrintElem\103-XM-Rm22XrX
1st Grade Hall Color = \\PRINT01\Bonham El-1st Grade Hall-Color Printer
Instructional Coordinator Fax = \\PRINT01\Bonham El-Instructional Coordinator Office-Fax
LRC = \\PRINT01\Bonham El-LRC-Printer
Lab = \\PRINT01\Bonham El-Lab-Printer01
Mile Carts 28-29 = \\PRINT01\Bonham El-Mile Carts 28-29-Printer
Mile Carts 92-93 = \\PRINT01\Bonham-MILE92-93-BW
Office Xerox = \\PRINT01\Bonham El-Office-Xerox
Outter Counselor Color Printer = \\PRINT01\Bonham El-Outter Counselor-Color Printer
Port 3 RM Lab = \\PRINT01\Bonham El-Portable 3-RM Lab-Printer
Port 3 RM Lab-Color = \\PRINT01\Bonham El-Portable 3-RM Lab-Color Printer
Port 7 Color = \\PRINT01\Bonham El-Portable 7-Color Printer
Portable 2 BW = \\PRINT01\Bonham-P2-BW
Portable 8 = \\PRINT01\Bonham El-Portable 8
Room 14 = \\PRINT01\Bonham El-Room 14-Printer
Room 18 = \\PRINT01\Bonham El-Room 18-Printer
Room 22 Color = \\PRINT01\Bonham El-Room 22-Color Printer
Room 29 = \\PRINT01\Bonham El-Room 29-Printer
Room 5 = \\PRINT01\Bonham El-Room 5-Printer
Workroom Color = \\PRINT01\Bonham El-Workroom-Color Printer
Workroom Xerox = \\PRINT01\Bonham El-Workroom-Xerox
[104]
104-CC-LFP = \\PrintElem\104-CC-LFP
104-HC-OfficeColor = \\PrintElem\104-HC-OfficeColor
104-HC-TechLabBW = \\printelem\104-HC-TechLabBW
104-HC-TechLabColor = \\printelem\104-HC-TechLabColor
104-HC-WorkroomColor = \\PrintElem\104-HC-WorkroomColor
104-XM-OffXerox = \\PrintElem\104-XM-OffXerox
Annex Workroom Xerox = \\PRINT01\Bowie El-Annex Workroom-Xerox
Gym = \\PRINT01\Bowie El-Gym-Printer
Kindergarten Color = \\PRINT01\Bowie El-Kindergarten-Color Printer
LRC #2 = \\PRINT01\Bowie El-LRC-Printer2
LRC = \\PRINT01\Bowie El-LRC-Printer
LRC Color2 = \\PRINT01\Bowie El-LRC-Color Printer2
Lab = \\PRINT01\Bowie El-Lab-Printer01
Main Workroom Color = \\PRINT01\Bowie El-Main WkRm-Color Printer
Mile Carts 30-31 = \\PRINT01\Bowie El-Mile Carts 30-31-Printer
Mile05 = \\PRINT01\Bowie El-LRC-Mile05-Printer
Office Color = \\PRINT01\Bowie El-Office-Color Printer
Office Fax = \\PRINT01\Bowie El-Office-Fax
Office Xerox = \\PRINT01\Bowie El-Office-Xerox
RM Lab B-W = \\PRINT01\Bowie El-RM Lab-Printer
RM Lab Color = \\PRINT01\Bowie El-RM Lab-Color Printer
Room 13A = \\PRINT01\Bowie El-Room 13A-Printer
SpEd Office = \\PRINT01\Bowie El-SpEd Office-Printer
TI Lab = \\PRINT01\Bowie El-TI Lab-Printer
Teacher Workroom Color = \\PRINT01\Bowie El-Teacher Workroom-Color Printer
Teacher Workroom Xerox = \\PRINT01\Bowie El-Teacher Workroom-Xerox
Workroom 106 = \\PRINT01\Bowie El-WkRm 106-Printer
[107]
107-HC-ParWkRmColor = \\printelem\107-HC-ParWkRmColor
107-HC-WrkRmColor = \\printelem\107-HC-WrkRmColor
107-XM-NewWingXerox = \\printelem\107-XM-NewWingXerox
107-XM-WrkrmXerox = \\printelem\107-XM-WrkrmXerox
Crockett-Directors Office-New Color = \\print01\Crockett-Directors Office-New Color
Crockett-Health Office-Color = \\Print01\Crockett-Health Office-Color
Crockett-Office-New Color = \\print01\Crockett-Office-New Color
Family Advocate = \\PRINT01\Crockett Early Head Start-Family Advocates-Printer
Office Color = \\PRINT01\Crockett Early Head Start-Office-Color Printer
SAMS Room Color = \\PRINT01\Crockett Early Head Start-SAMS Room-Color Printer
Teacher printer Cafeteria = \\PRINT01\Crockett Early Head Start-Teacher Printer
[108]
108-BM-MainFax = \\Printelem\108-BM-MainFax
108-HB-Hall2-3BW = \\Printelem\108-HB-Hall2-3BW
108-HB-Hall4-5BW = \\Printelem\108-HB-Hall4-5BW
108-HB-HallK-1BW = \\Printelem\108-HB-HallK-1BW
108-HB-Rm12BW = \\printelem\108-HB-Rm12BW
108-HC-Hall4-5Color = \\Printelem\108-HC-Hall4-5Color
108-HC-HallK-1Color = \\Printelem\108-HC-HallK-1Color
108-HC-PrincipleColor = \\Printelem\108-HC-PrincipleColor
108-HC-TechLabColor = \\Printelem\108-HC-TechLabColor
108-XM-OffXerox = \\printelem\108-XM-OffXerox
Conference Room = \\PRINT01\Dyess El-Conference Room-Printer
LRC = \\PRINT01\Dyess El-LRC-Printer
Lab = \\PRINT01\Dyess El-Lab-Printer01
Lab-Color Printer = \\PRINT01\Dyess El-Lab-Color Printer
Mile11 Color = \\PRINT01\Dyess El-LRC-Mile11 Color Printer
Office Color Printer = \\PRINT01\Dyess El-Office-Color Printer
Office Printer and Fax = \\PRINT01\Dyess El-Office-Fax-Printer
Room 27 RM Printer = \\PRINT01\Dyess El-Room 27-RM Printer
Room 28 RM printer = \\PRINT01\Dyess El-Room 28-RM Printer
VP Office = \\PRINT01\Dyess El-VP Office-Fax
Workroom Xerox01 = \\PRINT01\Dyess El-Workroom 1-Xerox01
Workroom Xerox02 = \\PRINT01\Dyess El-Workroom 1-Xerox02
[112]
100 Hall North = \\PRINT01\Jackson El-100 Hall North-Printer
100 Hall South = \\PRINT01\Jackson El-100 Hall South-Printer
112-HB-IStaLabBW = \\printelem\112-HB-IStaLabBW
112-HB-LRCBW = \\printelem\112-HB-LRCBW
112-HB-SouthHall100BW = \\printelem\112-HB-SouthHall100BW
112-HC-PrintRmColor = \\printelem\112-HC-PrintRmColor
112-HC-TechLabColor = \\printelem\112-HC-TechLabColor
112-HC-WorkRmColor = \\printelem\112-HC-WorkRmColor
112-RB-SouthHall100BW = \\printelem\112-RB-SouthHall100BW
112-XM-OffXerox = \\printelem\112-XM-OffXerox
200 Hall North = \\PRINT01\Jackson El-200 Hall North-Printer
200 Hall South = \\PRINT01\Jackson El-200 Hall South-Printer
400 Hall = \\PRINT01\Jackson El-400 Hall-Printer
Conference Room = \\PRINT01\Jackson El-Conference Room-Printer
Counselor = \\PRINT01\Jackson El-Counselor-Printer
LRC = \\PRINT01\Jackson El-LRC-Printer
Lab = \\PRINT01\Jackson El-Lab-Printer01
Lab Color = \\PRINT01\Jackson El-Lab-Color Printer
Office Xerox = \\PRINT01\Jackson El-Office-Xerox
Print Room Color = \\PRINT01\Jackson El-Print Room-Color Printer
Print Room Xerox = \\PRINT01\Jackson El-Print Room-Xerox
Teachers Workroom = \\PRINT01\Jackson El-Teacher Workroom-Color Printer
Workroom Xerox = \\PRINT01\Jackson El-Workroom-Xerox
[113]
113-HB-Bldg300BW = \\printelem\113-HB-Bldg300BW
113-HB-P5Lab = \\printelem\113-HB-P5Lab
113-HC-TechLabColor = \\printelem\113-HC-TechLabColor
113-XM-OffXerox = \\printelem\113-XM-OffXerox
113-XM-WrkrmXerox = \\printelem\113-XM-WrkrmXerox
Gym = \\PRINT01\Johnston El-Gym-Printer
LRC = \\PRINT01\Johnston El-LRC-Printer
LRC Printer 2 = \\PRINT01\Johnston El-LRC-Printer2
Lab = \\PRINT01\Johnston El-LAB-Printer01
Lab-Color Printer = \\PRINT01\Johnston El-Lab-Color Printer
Office = \\PRINT01\Johnston El-Office-Printer
Office Color = \\PRINT01\Johnston El-Office-Color Printer
POD 1 NEW Color Printer = \\PRINT01\Johnston-Pod1-WkRm-Color
Pod1 Workroom Color = \\PRINT01\Johnston El-Pod1 Workroom-Color Printer
Pod2 Workroom = \\PRINT01\Johnston El-Pod2 Workroom-Printer
Pod2 Workroom Color = \\PRINT01\Johnston El-Pod2 Workroom-Color Printer
Pod3 Workroom = \\PRINT01\Johnston El-Pod3 WOrkroom-Printer
Portable 1 = \\PRINT01\Johnston El-Portable 1-Printer
Portable 2 = \\PRINT01\Johnston El-Speech Portable 2-Printer
Portable 6 = \\PRINT01\Johnston El-Portable 6-Printer
Room A1 = \\PRINT01\Johnston El-Room A1-Printer
Room A10 = \\PRINT01\Johnston El-Room A10-Fax
Workroom Xerox = \\PRINT01\Johnston El-Workroom-Xerox
[116]
116-BM-ICScan = \\PrintElem\116-BM-ICScan
116-HB-ConfRmBW = \\printelem\116-HB-ConfRmBW
116-HB-Hall100BW = \\printelem\116-HB-Hall100BW
116-HB-Hall200BW = \\printelem\116-HB-Hall200BW
116-HB-Hall300BW = \\printelem\116-HB-Hall300BW
116-HB-Hall400BW = \\printelem\116-HB-Hall400BW
116-HB-LRCBW = \\printelem\116-HB-LRCBW
116-HB-Rm618BW = \\printelem\116-HB-Rm618BW
116-HB-TechLabBW = \\printelem\116-HB-TechLabBW
116-HB-TechLabColor = \\printelem\116-HB-TechLabColor
116-RB-Port2BW = \\printelem\116-RB-Port2BW
116-XM-OffXerox = \\Printelem\116-XM-OffXerox
116-XM-WrkRmXrX02 = \\PrintElem\116-XM-WrkRmXrX02
1st Grade Printer = \\PRINT01\Lee El-1st Grade-Printer
2nd Grade Printer = \\PRINT01\Lee El-2nd Grade-Printer
3rd Grade Printer = \\PRINT01\Lee El-3rd Grade-Printer
4th Grade Printer = \\PRINT01\Lee El-4th Grade-Printer
5th Grade Printer = \\PRINT01\Lee El-5th Grade-Printer
Compass Lab = \\PRINT01\Lee El-Compass Lab-Printer
Counselor = \\PRINT01\Lee El-Counselor-Printer
Kindergarten Printer = \\PRINT01\Lee El-Kindergarten-Printer
LRC = \\PRINT01\Lee El-LRC-Printer
Lab = \\PRINT01\Lee El-Lab-Printer01
Lee El-Lab-Color Printer = \\Print01\Lee El-Lab-Color Printer
Mile Cart 32 = \\PRINT01\Lee El-Mile Cart 32-Printer
Mile07 = \\PRINT01\Lee El-LRC-Mile07 Printer
Office = \\PRINT01\Lee El-Office-Printer
Office Color Printer = \\PRINT01\Lee El-Office-Color Printer
Room 29 Color = \\PRINT01\Lee El-Room 29-Color Printer
Room 325 Color Printer = \\PRINT01\Lee El-Room 325-Color Printer
Room 622 = \\PRINT01\Lee El-Room 622-Printer
Room 625 Color Printer = \\PRINT01\Lee El-Room 325-Color Printer
Special Ed 02 = \\PRINT01\Lee El-Special Ed-Printer02
Special Ed = \\PRINT01\Lee El-Special Ed-Printer
TI  Lab Color = \\PRINT01\Lee El-TI Lab-Color Printer
TI Lab = \\PRINT01\Lee El-TI Lab-Printer
TI Lab-Color Printer = \\print01\Lee El-TI Lab-Color Printer
Workroom Color = \\PRINT01\Lee El-Workroom-Color Printer
Xerox = \\PRINT01\Lee El-Workroom-Xerox
[117]
117-BM-PortEScan = \\printelem\117-BM-PortEScan
117-HC-HallwayCP = \\printelem\117-HC-HallwayCP
117-HC-NewWing02CP = \\printelem\117-HC-NewWing02CP
117-HC-OfficeCP = \\printelem\117-HC-OfficeCP
117-XM-OffXerox = \\printelem\117-XM-OffXerox
117-XM-WrkrmXerox = \\printelem\117-XM-WrkrmXerox
Clinic Fax = \\PRINT01\Locust Early Childhood Center-Clinic-Fax
Education Coordinator Color = \\PRINT01\Locust Early Childhood Center-Ed. Coord.-Color Printer
Fiscal Manager Fax = \\PRINT01\Locust Early Childhood Center-Fiscal Mgr-Fax
Hallway Color = \\PRINT01\Locust Early Childhood Center-Hallway-Color Printer
New Wing North Nook Color = \\PRINT01\Locust Early Childhood Center-New Wing-Color Printer01
New Wing South Nook Color = \\PRINT01\Locust Early Childhood Center-New Wing-Color Printer02
Office Color = \\PRINT01\Locust Early Childhood Center-Office-Color Printer
Port C ARD Printer = \\PRINT01\Locust Early Childhood Center-Port C ARD-Printer
Port C ARD Scanner = \\PRINT01\Locust Early Childhood Center-Port C ARD-Scanner
Room 10 = \\PRINT01\Locust Early Childhood Center-Room 10-Printer
Room 10 Color = \\PRINT01\Locust Early Childhood Center-Room 10-Color Printer
Room 7 Fax = \\PRINT01\Locust Early Childhood Center-Room 7-Fax
Workroom = \\PRINT01\Locust Early Childhood Center-Workroom-Printer
[118]
118-HC-OffColor = \\printelem\118-HC-OffColor
118-HC-TechLabColor = \\printelem\118-HC-TechLabColor
118-XM-OffXrX = \\Printelem\118-XM-OffXrX
118-XM-Rm12aXrX = \\Printelem\118-XM-Rm12aXrX
ARD Room = \\PRINT01\Long El-ARD-Printer
Building 2 Workroom = \\PRINT01\Long El-Building 2 Workroom-Printer
Building 3 Workroom Color(DONOTUSE) = \\PRINT01\Long El-Building 3 Workroom-Color Printer
Building 3 Workroom Color2(NEW) = \\PRINT01\Long El-Building 3 Workroom-Color Printer2
Building 3 Workroom Xerox = \\PRINT01\Long El-Building 3 Workroom-Xerox
Counselor's Office = \\PRINT01\Long El-Counselor Office-Printer
Gym = \\PRINT01\Long El-Gym-Printer
LRC = \\PRINT01\Long El-LRC-Printer01
Lab 25 BW = \\PRINT01\Long El-Lab-Printer01
Long El-LRC BW = \\print01\Long El-LRC BW
Office = \\PRINT01\Long El-Office-Printer
Office Color = \\PRINT01\Long El-Office-Color Printer
Room 13A = \\PRINT01\Long El-Room 13A-Fax
Room 23A = \\PRINT01\Long El-Room 23A-Printer
TI Lab = \\PRINT01\Long El-TI Lab-Printer
[120]
120-BM-P4Scan = \\printelem\120-BM-P4Scan
120-HB-LRCBW = \\printelem\120-HB-LRCBW
120-HB-Rm26Lab = \\printelem\120-HB-Rm26Lab
120-HC-TechLabBW = \\printelem\120-HC-TechLabBW
120-HC-TechLabColor = \\printelem\120-HC-TechLabColor
120-RB-Bldg1BW = \\printelem\120-RB-Bldg1BW
120-RB-Rm36BW = \\printelem\120-RB-Rm36BW
ALPS Lab = \\PRINT01\Reagan El-ALPS Lab-Printer
Building 1 = \\PRINT01\Reagan El-Building 1-Printer
Building 2 = \\PRINT01\Reagan El-Building 2-Printer
Building 4 = \\PRINT01\Reagan El-Building 4-Printer
Building 4 Color = \\PRINT01\Reagan El-Building 4-Color Printer
Conference Room = \\PRINT01\Reagan El-Conference Room-Printer
Gym = \\PRINT01\Reagan El-Gym-Printer
LRC = \\PRINT01\Reagan El-LRC-Printer
Lab = \\PRINT01\Reagan El-Lab-Printer01
Mile Cart 37 = \\PRINT01\Reagan El-Mile Cart 37-Printer
Office = \\PRINT01\Reagan El-Office-Fax
Office Xerox = \\PRINT01\Reagan El-Office-Xerox
RM Bus Printer = \\PRINT01\Reagan El-RM Bus-Printer
Room 8 Color Printer = \\PRINT01\Reagan El-Room 8-Color Printer
TI Lab = \\PRINT01\Reagan El-TI Lab-Printer
Workroom Color = \\PRINT01\Reagan El-Workroom-Color Printer
Workroom Xerox01 = \\PRINT01\Reagan El-Workroom-Xerox01
Workroom Xerox02 = \\PRINT01\Reagan El-Workroom-Xerox02
[121]
121-HB-Lab30BW = \\printelem\121-HB-Lab30BW
121-HB-P1Lab = \\Printelem\121-HB-P1Lab
121-HB-P7Lab = \\Printelem\121-HB-P7Lab
121-HB-Rm28BW = \\Printelem\121-HB-Rm28BW
121-HC-LRCColor = \\printelem\121-HC-LRCColor
121-HC-P5Color = \\Printelem\121-HC-P5Color
121-HC-WkrmColor = \\Printelem\121-HC-WkrmColor
121-XM-OffXerox = \\Printelem\121-XM-OffXerox
1st Grade Hall 02 = \\PRINT01\Taylor El-1st Grade Hall-Printer02
3rd Grade Closet = \\PRINT01\Taylor El-3rd Grade Closet-Printer
4th Grade Closet = \\PRINT01\Taylor El-4th Grade Closet-Printer
Counselor = \\PRINT01\Taylor El-Counselor-Printer
Counselor02 = \\PRINT01\Taylor El-Counselor-Printer02
Discovery Room = \\PRINT01\Taylor El-Discovery Room-Printer
Gym = \\PRINT01\Taylor El-Gym-Printer
LRC = \\PRINT01\Taylor El-LRC-Printer
LRC B/W = \\PRINT01\Taylor-LRC-B-W
Lab = \\PRINT01\Taylor El-Lab-Printer01
Lounge = \\PRINT01\Taylor El-Lounge-Printer
Mile Carts = \\PRINT01\Taylor El-LRC-Mile06 Printer
New Lab Color Printer = \\PRINT01\Taylor-Lab-CP
OLD LAB COLOR-REMOVE = \\PRINT01\Taylor El-Lab-Color Printer
Office = \\PRINT01\Taylor El-Office-Printer
Office Fax = \\PRINT01\Taylor El-Office-Fax
Portable 1 = \\PRINT01\Taylor EL-Portable 1-Printer
Portable 29 = \\PRINT01\Taylor El-Portable 29-Printer
Taylor EL-LRC-Color Printer = \\Print01\Taylor EL-LRC-Color Printer
WorkRoom Xerox = \\PRINT01\Taylor El-Workroom-Xerox
Workroom Color = \\PRINT01\Taylor El-Workroom-Color Printer
[125]
125-HC-NewWingCP = \\printelem\125-HC-NewWingCP
125-HC-OfficeCP = \\printelem\125-HC-OfficeCP
125-XM-OffXrx = \\printelem\125-XM-OffXrx
125-XM-Rm48Xrx = \\printelem\125-XM-Rm48Xrx
125-XM-WrkrmXerox = \\printelem\125-XM-WrkrmXerox
Clinic Scanner-Printer = \\PRINT01\Woodson Early Childhood Center-Clinic-Scanner
Family Advocate Color = \\PRINT01\Woodson Early Head Start-Family Advocate-Color Printer
Front Office = \\PRINT01\Woodson Early Childhood Center-Office-Printer
Front Office = \\PRINT01\Woodson Early Head Start-Front Office-Printer
Front Office Color = \\PRINT01\Woodson Early Childhood Center-Office-Color Printer
Front Office Color = \\PRINT01\Woodson Early Head Start-Front Office-Color Printer
LRC Black and White = \\PRINT01\Woodson Early Childhood Center-LRC-Printer
LRC Color = \\PRINT01\Woodson Early Childhood Center-LRC-Color Printer
Main Hall Color(NEW) = \\PRINT01\Woodson Early Childhood Center-Main Hall-Color Printer2
Main Hall Color(REMOVE) = \\PRINT01\Woodson Early Childhood Center-Main Hall-Color Printer
New Wing Color = \\PRINT01\Woodson Early Childhood Center-New Wing-Color Printer
Nurses MFC = \\PRINT01\WoodsonECC-Nurse-MFC
Resource Room = \\PRINT01\Woodson Early Head Start-Resource Room-Color Printer
Room 25 Color = \\PRINT01\Woodson Early Childhood Center-Room 25-Color Printer
Room 48 = \\PRINT01\Woodson Early Childhood Center-Room 48-Printer
Speech = \\PRINT01\Woodson Early Childhood Center-Speech-Printer
Speech Color = \\PRINT01\Woodson Early Childhood Center-Speech-Color Printer
Workroom Color = \\PRINT01\Woodson Early Childhood Center-Workroom-Color Printer
[131]
Office Color = \\PRINT01\Planetarium-Office-Color Printer
Office Fax = \\PRINT01\Planetarium-Office-Fax
[138]
138-HC-FoyerCP = \\PrintElem\138-HC-FoyerCP
138-HC-FrntOffCP = \\PrintElem\138-HC-FrntOffCP
138-HC-ResRmCP = \\PrintElem\138-HC-ResRmCP
138-RC-FamAdvColor = \\PrintElem\138-RC-FamAdvColor
138-XM-FamAdvXerox = \\Printelem\138-XM-FamAdvXerox
138-XM-FoyerXrX = \\Printelem\138-XM-FoyerXrX
[150]
101C = \\PRINT01\Ward El-Room 101C-Printer
150-HB-Hall A = \\printelem\150-HB-Hall A
150-HB-Hall B = \\printelem\150-HB-Hall B
150-HB-Hall C = \\printelem\150-HB-Hall C
150-HB-LRCBW = \\PrintElem\150-HB-LRCBW
150-HB-TechLabBW = \\printelem\150-HB-TechLabBW
150-HC-Hall C Color = \\printelem\150-HC-Hall C Color
150-HC-OfficeColor = \\printelem\150-HC-OfficeColor
150-HC-TechLabColor = \\printelem\150-HC-TechLabColor
150-RC-OfficeColor = \\printelem\150-RC-OfficeColor
150-XM-OffXerox = \\PrintElem\150-XM-OffXerox
A-11 RM Room = \\PRINT01\Ward El-Room A11-RM Printer
B-4 RM Room = \\PRINT01\Ward El-Room B4-RM Printer
LRC = \\PRINT01\Ward El-LRC-Printer
Lab = \\PRINT01\Ward El-Lab-Printer
Office = \\PRINT01\Ward El-Office-Printer
Ward El-Lab-Color Printer02 = \\Print01\Ward El-Lab-Color Printer02
Workroom Xerox 01 = \\PRINT01\Ward El-Workroom-Xerox01
Workroom Xerox 02 = \\PRINT01\Ward El-Workroom-Xerox02
[151]
151-HB-HallABW = \\printelem\151-HB-HallABW
151-HB-HallBBW = \\printelem\151-HB-HallBBW
151-HB-HallCBW = \\printelem\151-HB-HallCBW
151-HB-LRCBW = \\printelem\151-HB-LRCBW
151-HB-Rm105Lab = \\printelem\151-HB-Rm105Lab
151-HB-Rm118Lab = \\printelem\151-HB-Rm118Lab
151-HC-HallCColor = \\printelem\151-HC-HallCColor
151-HC-Rm118Color = \\printelem\151-HC-Rm118Color
151-XM-OffXerox = \\printelem\151-XM-OffXerox
ADD NEW 105 Lab Color HP = \\PRINT01\Thomas-105-HP Color
LRC = \\PRINT01\Thomas El-LRC-Printer
LabPrinter01 105 B/W = \\PRINT01\Thomas El-Lab-Printer01
Office Color = \\PRINT01\Thomas El-Office-Color Printer
Office Fax = \\PRINT01\Thomas El-Office-Fax
REMOVE OLD 105 Color Lab = \\PRINT01\Thomas El-Lab-Color Printer
RM Lab 2 room 131 = \\PRINT01\Thomas EL-RM LAB-Printer
RM Portable = \\PRINT01\Thomas EL-RM Portable-Printer
Room 101C = \\PRINT01\Thomas El-Room 101C-Printer
Workroom Xerox01 = \\PRINT01\Thomas El-Workroom-Xerox01
Workroom Xerox02 = \\PRINT01\Thomas El-Workroom-Xerox02
[152]
152-BM-ICMFC = \\Printelem\152-BM-ICMFC
152-HB-Rm300Lab2 = \\Printelem\152-HB-Rm300Lab2
152-HC-TechLabColor = \\printelem\152-HC-TechLabColor
152-RB-ARDRmBW = \\printelem\152-RB-ARDRmBW
152-XM-WrkrmXrx2 = \\Printelem\152-XM-WrkrmXrx2
Compass Lab = \\PRINT01\Ortiz El-Compass Lab-Printer01
Hall 2-4 = \\PRINT01\Ortiz El-Hall 2-4-Printer
Hall 3-5 = \\PRINT01\Ortiz El-Hall 3-5-Printer
Hall 3-5 Printer B = \\PRINT01\Ortiz El-Hall 3-5-Printer B
Hall K-1 = \\PRINT01\Ortiz El-Hall K-1-Printer
Hall k-1 Color Printer = \\PRINT01\Ortiz El-Hall K-1-Color Printer
Hall k-1 Printer B = \\PRINT01\Ortiz El-Hall K-1-Printer B
LRC = \\PRINT01\Ortiz El-LRC-Printer
Lab = \\PRINT01\Ortiz El-Lab-Printer01
Lab-Color Printer = \\PRINT01\Ortiz El-Lab-Color Printer
Mile Carts 33-34 = \\PRINT01\Ortiz El-Mile Carts 33-34-Printer
Mile Carts 35-36 = \\PRINT01\Ortiz El-Mile Carts 35-36-Printer
Office Color Printer = \\PRINT01\Ortiz El-Office-Color Printer
Office Fax = \\PRINT01\Ortiz El-Office-Fax
Office Printer 1 = \\PRINT01\Ortiz El-Office-Printer01
Office Printer 2 = \\PRINT01\Ortiz El-Office-Printer02
Office Xerox = \\PRINT01\Ortiz El-Office-Xerox
RM Lab = \\PRINT01\Ortiz El-TI Lab-Color Printer
System 44 Printer = \\PRINT01\Ortiz-Sys44-Printer
Workroom Color Printer = \\PRINT01\Ortiz El-Workroom-Color Printer
Workroom Xerox = \\PRINT01\Ortiz El-Workroom-Xerox
[153]
153-HB-LRCBW = \\Printelem\153-HB-LRCBW
153-HB-ReadBW = \\printelem\153-HB-ReadBW
153-HB-Rm300Lab2 = \\PrintElem\153-HB-Rm300Lab2
153-HC-K-1Color = \\printelem\153-HC-K-1Color
153-HC-TechLabColor = \\printelem\153-HC-TechLabColor
153-RC-LRCColor = \\Printelem\153-RC-LRCColor
153-XM-OffXrx = \\printelem\153-XM-OffXrx
153-XM-WkrmXrx02 = \\printelem\153-XM-WkrmXrx02
Conference Room = \\PRINT01\Bassetti El-Conference Room-Printer
Hallway 2-3 = \\PRINT01\Bassetti El-2-3 hall-Printer
Hallway 4-5 = \\PRINT01\Bassetti El-4-5 hall-Printer
Hallway K-1 Color = \\PRINT01\Bassetti El-K-1 hall-Color Printer
LRC Color = \\PRINT01\Bassetti El-LRC-Color Printer
Lab BW = \\PRINT01\Bassetti El-Lab-Printer01
Lab Color = \\PRINT01\Bassetti El-Lab-Color Printer
Mile Carts 26-27 = \\PRINT01\Bassetti El-Mile Carts 26-27-Printer
Room 301-BW (NEW) = \\PRINT01\Bassetti-301-RM-BW
Room 301-RM Lab Color = \\PRINT01\Bassetti El-Room 301-RM Lab-Color Printer
Workroom Xerox = \\PRINT01\Bassetti El-Workroom-Xerox
[155]
155-HB-Rm601aBW = \\printelem\155-HB-Rm601aBW
155-HC-604WkRmColor(NEW HP) = \\printelem\155-HC-604WkRmColor
155-HM-700Scan = \\printelem\155-HM-700Scan
155-XM-OffXerox = \\printelem\155-XM-OffXerox
155-XM-WrkrmXrx02 = \\printelem\155-XM-WrkrmXrx02
155-XM-WrkrmXrx03 = \\printelem\155-XM-WrkrmXrx03
Cafe MFC = \\PRINT01\Martinez El-Cafe-MFC
Hall 100 = \\PRINT01\Martinez El-Hall 100-Printer
Hall 200 = \\PRINT01\Martinez El-Hall 200-Printer
Hall 300 = \\PRINT01\Martinez El-Hall 300-Printer
Hall 400 = \\PRINT01\Martinez El-Hall 400-Printer
Hall 700 = \\PRINT01\Martinez El-Hall 700-Printer
I Sta Lab 607 = \\PRINT01\Martinez El-Lab 607-Printer
LRC BW = \\PRINT01\Martinez El-LRC-Printer
LRC Color = \\PRINT01\Martinez El-LRC-Color Printer
Lab 606 BW = \\PRINT01\Martinez El-Lab 606-Printer
Martinez El-Lab 606-Color Printer = \\print01\Martinez El-Lab 606-Color Printer
N/A = \\PRINT01\Martinez El-Lab 606-Color Printer
Office Xerox = \\PRINT01\Martinez El-Office-Xerox
Read 180-Sys 44 = \\PRINT01\Martinez El- R180-Printer
Room 407 SpEd ONLY = \\PRINT01\Martinez El-Room 407SpEd-Printer
Room 601D = \\PRINT01\Martinez El-601D-Fax
Room 601a ARD/Conf Room = \\PRINT01\Martinez El-Room 601a ARD-Printer
Room 604 Teacher Color = \\PRINT01\Martinez El-WkRm 604-Color Printer
Room 604 Teacher Xerox = \\PRINT01\Martinez El-WkRm-Xerox
Room 900 GYM office #2 = \\PRINT01\Martinez El-Room 900 Gym-Printer2
Room 900 GYM office = \\PRINT01\Martinez El-Room 900 Gym-Printer
[200]
200-BM-VOIPScan = \\PrintAdmin\200-BM-VOIPScan
200-HB-NetWorkGuysBW = \\PrintAdmin\200-HB-NetWorkGuysBW
200-XC-TCXerox = \\PrintAdmin\200-XC-TCXerox
Network Manager = \\PRINT01\Technology Center-Network Manager-Printer
Office Color = \\PRINT01\Technology Center-Office-Color Printer
Office Xerox = \\PRINT01\Technology Center-Office-Xerox
PEIMS (Print01) = \\PRINT01\Technology Center-PEIMS-Printer
PEIMS = \\PRINT01\Technology Center-PEIMS-Printer
PEIMS Color = \\PRINT01\Technology Center-PEIMS-Color Printer
PEIMS-FAX = \\PRINT01\Technology Center-PEIMS-Fax
Programmers Cube = \\PRINT01\Technology Center-Programmers Cube-Printer
Programmers Cube on Print01 = \\PRINT01\Technology Center-Programmers Cube-Printer
Programmers Cube on Print01 = \\PRINT01\Technology Center-Programmers Cube-Printer
Server Manager = \\PRINT01\Technology Center-Server Manager-Printer
VOIP Fax = \\PRINT01\Technology Center-VOIP Specialist-Fax
[201]
1D-Fax2 = \\PRINT01\One AISD Center-1D-Fax2
201-BM-11BEnglish = \\PrintAdmin\201-BM-11BEnglish
201-BM-11BMath = \\PrintAdmin\201-BM-11BMath
201-BM-11BScience = \\PrintAdmin\201-BM-11BScience
201-BM-11BSocStdy = \\PrintAdmin\201-BM-11BSocStdy
201-BM-1DMFC = \\PrintAdmin\201-BM-1DMFC
201-BM-2BScanner = \\PrintAdmin\201-BM-2BScanner
201-BM-4BMFC = \\PrintAdmin\201-BM-4BMFC
201-BM-4DCTE = \\PrintAdmin\201-BM-4DCTE
201-BM-5BScan = \\PrintAdmin\201-BM-5BScan
201-BM-7AMFC = \\PrintAdmin\201-BM-7AMFC
201-HB-10ABW = \\PrintAdmin\201-HB-10ABW
201-HB-1ABW = \\PrintAdmin\201-HB-1ABW
201-HB-4ABW = \\PrintAdmin\201-HB-4ABW
201-HB-4BBW = \\PrintAdmin\201-HB-4BBW
201-HB-501BW = \\PrintAdmin\201-HB-501BW
201-HB-502BW = \\PrintAdmin\201-HB-502BW
201-HB-503FBW = \\PrintAdmin\201-HB-503FBW
201-HB-504BW = \\PrintAdmin\201-HB-504BW
201-HB-508BW = \\PrintAdmin\201-HB-508BW
201-HB-509CBW = \\Printadmin\201-HB-509CBW
201-HB-510CBW = \\Printadmin\201-HB-510CBW
201-HB-5ABW = \\PrintAdmin\201-HB-5ABW
201-HB-6BPrinter01 = \\PrintAdmin\201-HB-6BPrinter01
201-HB-6BPrinter02 = \\PrintAdmin\201-HB-6BPrinter02
201-HB-7LBBW = \\PrintAdmin\201-HB-7LBBW
201-HB-8ABW = \\PrintAdmin\201-HB-8ABW
201-HB-9ABW = \\PrintAdmin\201-HB-9ABW
201-HB-CheckBW = \\PrintAdmin\201-HB-CheckBW
201-HB-Lab2BW = \\PrintAdmin\201-HB-Lab2BW
201-HC-10AColor = \\PrintAdmin\201-HC-10AColor
201-HC-10DColor = \\PrintAdmin\201-HC-10DColor
201-HC-11AColor = \\PrintAdmin\201-HC-11AColor
201-HC-11BColor = \\PrintAdmin\201-HC-11BColor
201-HC-405EColor = \\PrintAdmin\201-HC-405EColor
201-HC-4BColor = \\PrintAdmin\201-HC-4BColor
201-HC-507AColor = \\PrintAdmin\201-HC-507AColor
201-HC-507BColor = \\PrintAdmin\201-HC-507BColor
201-HC-508CColor = \\PrintAdmin\201-HC-508CColor
201-HC-510CColor = \\PrintAdmin\201-HC-510CColor
201-HC-8AColor = \\PrintAdmin\201-HC-8AColor
201-HC-ESLDirColor = \\PrintAdmin\201-HC-ESLDirColor
201-HM-307AScan = \\PrintAdmin\201-HM-307AScan
201-HM-403DScan = \\Printadmin\201-HM-403DScan
201-HM-800LScan = \\PrintAdmin\201-HM-800LScan
201-RB-504EBW = \\PrintAdmin\201-RB-504EBW
201-RB-MaintRoom = \\PrintAdmin\201-RB-MaintRoom
201-XC-SuptOff = \\PrintAdmin\201-XC-SuptOff
201-XM-11BXerox = \\PrintAdmin\201-XM-11BXerox
201-XM-20CXerox = \\PrintAdmin\201-XM-20CXerox
201-XM-2AXerox = \\PrintAdmin\201-XM-2AXerox
201-XM-502Xrx = \\PrintAdmin\201-XM-502Xrx
201-XM-7LBXerox = \\PrintAdmin\201-XM-7BXerox
201-XM-7LBXerox = \\PrintAdmin\201-XM-7LBXerox
201-XM-8AXerox = \\PrintAdmin\201-XM-8AXerox
201-XM-T1Off = \\PrintAdmin\201-XM-T1Off
2A New B/W = \\PRINT01\AISD One-2A-NewBW
3C Scanner-Fax = \\PRINT01\One AISD Center-3C-Scanner-Fax
4B NEW B-W Printer = \\PRINT01\One AISD Center-4B-New Printer
4B NEW Color Printer = \\PRINT01\One AISD Center-4B-New Color Printer
4D CTE MFC\Fax = \\PRINT01\AISD One-4D-MFC
Mile Cart 123 = \\PRINT01\AISD One-IT-Mile 123
Mile Cart 124 = \\PRINT01\AISD One-IT-Mile 124
Mile Cart 125 = \\PRINT01\AISD One-IT-Mile 125
Mile Cart 126 = \\PRINT01\AISD One-IT-Mile 126
Suite 10A = \\PRINT01\One AISD Center-10A-Printer
Suite 10A Color = \\PRINT01\One AISD Center-10A-Color Printer
Suite 10B Color01 = \\PRINT01\One AISD Center-10B-Color Printer01
Suite 10B Color02 = \\PRINT01\One AISD Center-10B-Color Printer02
Suite 10B Fax = \\PRINT01\One AISD Center-10B-Fax
Suite 10B Fax2 = \\PRINT01\One AISD Center-10B-Fax2
Suite 10D = \\PRINT01\One AISD Center-10D-Printer
Suite 10D Color = \\PRINT01\One AISD Center-10D-Color Printer
Suite 11A Color = \\PRINT01\One AISD Center-11A-Color Printer
Suite 11A Color Printer B = \\PRINT01\One AISD Center-11A-Color Printer B
Suite 11B Color = \\PRINT01\One AISD Center-11B-Color Printer
Suite 11C Color = \\PRINT01\One AISD Center-11C-Color Printer
Suite 12B Color02 = \\PRINT01\One AISD Center-12B-Color Printer02
Suite 12LB Lab3 = \\PRINT01\One AISD Center-12LB Lab3-Color Printer
Suite 13B Fax = \\PRINT01\One AISD Center-13B-Fax
Suite 14B Color = \\PRINT01\One AISD Center-14B-Color Printer
Suite 15B Fax = \\PRINT01\One AISD Center-15B-Fax
Suite 1A = \\PRINT01\One AISD Center-1A-Printer01
Suite 1A Old = \\PRINT01\One AISD Center-1A-Printer
Suite 1A printer02 = \\PRINT01\One AISD Center-1A-Printer02
Suite 1D Color = \\PRINT01\One AISD Center-1D-Color
Suite 1D Fax = \\PRINT01\One AISD Center-1D-Fax
Suite 20C Color = \\PRINT01\One AISD Center-20C-Color Printer
Suite 2A = \\PRINT01\One AISD Center-2A-Printer03
Suite 2B Homeless Dept = \\PRINT01\AISD One-2B-Homeless Dept
Suite 2D Color = \\PRINT01\One AISD Center-2D-Color Printer
Suite 2D Fax01 = \\PRINT01\One AISD Center-2D-Fax01
Suite 2D Fax02 = \\PRINT01\One AISD Center-2D-Fax02
Suite 2D Xerox = \\PRINT01\One AISD Center-2D-Xerox
Suite 3B Color = \\PRINT01\One AISD Center-3B-Color Printer
Suite 3D Color = \\PRINT01\One AISD Center-3D-Color Printer
Suite 4A = \\PRINT01\One AISD Center-4A-Printer01
Suite 4B = \\PRINT01\One AISD Center-4B-Printer
Suite 4D Color = \\PRINT01\One AISD Center-4D-Color Printer
Suite 4D Conference = \\PRINT01\One AISD Center-4D-Conference
Suite 4D Conference Scanner = \\PRINT01\One AISD Center-4D-Conference-Scanner
Suite 4D Fax = \\PRINT01\One AISD Center-4D-Fax
Suite 5A = \\PRINT01\One AISD Center-5A-Printer
Suite 5B = \\PRINT01\One AISD Center-5B-Printer01
Suite 5B Color 2 = \\PRINT01\AISD One-5B-Color2
Suite 5B Color = \\PRINT01\One AISD Center-5B-Color Printer
Suite 5B Fax = \\PRINT01\One AISD Center-5B-Fax
Suite 5B Keith D BW = \\PRINT01\AISD One-5B-NewBW
Suite 5D Color = \\PRINT01\One AISD Center-5D-Color Printer
Suite 5D Fax = \\PRINT01\One AISD Center-5D-Fax
Suite 5D Xerox = \\PRINT01\One AISD Center-5D-Xerox
Suite 6A Color = \\PRINT01\One AISD Center-6A-Color Printer
Suite 6A Xerox = \\PRINT01\One AISD Center-6A-Xerox
Suite 6B CHECKS = \\FINPASRV1\CHECKS
Suite 6B Check = \\PRINT01\One AISD Center-6B-Check Printer
Suite 6B Check = \\PRINT1\One AISD Center-6B-Check Printer
Suite 6B Check On Print2 = \\PRINT2\One AISD Center-6B-Check Printer
Suite 6B Check On Print2 = \\PRINT2\One AISD Center-6B-Check Printer
Suite 6B Check on Print01 = \\PRINT01\One AISD Center-6B-Check Printer
Suite 6B Check on Print01 = \\PRINT01\One AISD Center-6B-Check Printer
Suite 6B Cindy Brown2 = \\PRINT01\One AISD Center-6B-Printer04
Suite 6B Cindy Brown2 = \\PRINT01\One AISD Center-6B-Printer04
Suite 6B Printer01 On Print01 = \\PRINT01\One AISD Center-6B-Printer01
Suite 6B Printer02 On Print01 = \\PRINT01\One AISD Center-6B-Printer02
Suite 6B Printer02 On Print01 = \\PRINT01\One AISD Center-6B-Printer02
Suite 6B Printer02 On Print2 = \\PRINT2\One AISD Center-6B-Printer02
Suite 6B Printer02 On Print2 = \\PRINT2\One AISD Center-6B-Printer02
Suite 6B Scanner = \\PRINT01\One AISD Center-6B-Scanner
Suite 6B Xerox = \\PRINT01\One AISD Center-6B-Xerox
Suite 6B-both HP 8150s = \\PRINT01\One AISD Center-6B-Printer01
Suite 6D Color = \\PRINT01\One AISD Center-6D-Color Printer
Suite 6LB = \\PRINT01\One AISD Center-6LB-Color Printer
Suite 6LB Color Printer ONLY = \\PRINT01\One AISD Center-6LB-Color Printer
Suite 6LD = \\PRINT01\One AISD Center-6LD-Printer
Suite 7A = \\PRINT01\One AISD Center-7A-Printer
Suite 7D Color = \\PRINT01\One AISD Center-7D-Color Printer
Suite 7D Color01 = \\PRINT01\One AISD Center-7D-Color Printer01
Suite 7D Color02 = \\PRINT01\One AISD Center-7D-Color Printer02
Suite 7D Fax = \\PRINT01\One AISD Center-7D-Fax
Suite 7LB = \\PRINT01\One AISD Center-7LB-Color Printer2
Suite 7LB HP Color = \\PRINT01\One AISD Center-7LB-Color Printer2
Suite 7LB Xerox = \\PRINT01\One AISD Center-7LB-Xerox
Suite 7LB Xerox = \\PRINT1\One AISD Center-7LB-Xerox
Suite 8A = \\PRINT01\One AISD Center-8A-Printer01
Suite 8A Fax = \\PRINT01\One AISD Center-8A-Fax
Suite 8A Xerox = \\PRINT01\One AISD Center-8A-Xerox
Suite 8LB = \\PRINT01\One AISD Center-8LB-Fax
Suite 8LB = \\PRINT1\One AISD Center-8LB-Fax
Suite 8LB Lab1 = \\PRINT01\One AISD Center-8LB Lab1-Printer
Suite 8LB Lab1 = \\PRINT1\One AISD Center-8LB Lab1-Printer
Suite 8LB Lab2 = \\PRINT01\One AISD Center-8LB Lab2-Printer
Suite 8LB Lab2 = \\PRINT1\One AISD Center-8LB Lab2-Printer
Suite 9A = \\PRINT01\One AISD Center-9A-Printer
Suite 9A Xerox = \\PRINT01\One AISD Center-9A-Xerox
Suite 9B Color 2 = \\PRINT01\One AISD Center-9B-Color Printer2
Suite 9B Scanner = \\PRINT01\One AISD Center-9B-MFC
Suite 9D Color = \\PRINT01\One AISD Center-9D-Color Printer
Suite 9D Fax = \\PRINT01\One AISD Center-9D-Fax
Suite4a Printer02 = \\PRINT01\One AISD Center-4A-Printer02
Suite4a Printer03 = \\PRINT01\One AISD Center-4A-Printer03
Testing Room = \\PRINT01\One AISD Center-Testing Room-Printer
[202]
202-BM-TSCMFC = \\PRINTADMIN\202-BM-TSCMFC
202-BM-TechPortMFC = \\PRINTADMIN\202-BM-TechPortMFC
202-HB-CableBW = \\PRINTADMIN\202-HB-CableBW
202-HB-TSCBW = \\PRINTADMIN\202-HB-TSCBW
202-HC-TSCColor = \\PRINTADMIN\202-HC-TSCColor
202-XM-TSCXrx = \\PRINTADMIN\202-XM-TSCXrx
Cable Engineer = \\PRINT01\Alta Vista-Room 11A-Fax
Cable Office = \\PRINT01\Tech Support Cntr-Cable Office-Printer
Cable Technicians = \\PRINT01\Alta Vista-Room 12-Printer
Cable Techs = \\PRINT01\Tech Support Cntr-Cable-Printer
HP Black-White = \\PRINT01\Tech Support Cntr-Techs-Printer
HP Color(Jims Cube) = \\PRINT01\Tech Support Cntr-Techs-Color Printer
Room 18 Color = \\PRINT01\Alta Vista-Room Lab-Color Printer
Room 24 Color = \\PRINT01\Alta Vista-Room 24-Color Printer
Room 24 Xerox = \\PRINT01\Alta Vista-Room 24-Xerox
TS HP TEST Color = \\PRINT01\Alta Vista-Technology Support Center-Test Color
TS HP Test B-W = \\PRINT01\Alta Vista-Technology Support Center-Test B-W
TS Jims Bench = \\PRINT01\Alta Vista-Technology Support Center-Jims work bench
Technology Support = \\PRINT01\Alta Vista-Technology Support Center-Color Printer
Technology Support Xerox = \\PRINT01\Alta Vista-Technology Support Center-Xerox
Workroom Color = \\PRINT01\Alta Vista-Workroom-Color Printer
XEROX = \\PRINT01\Tech Support Cntr-Techs-Xerox
[203]
203-BM-OffMFC = \\PrintAdmin\203-BM-OffMFC
203-RC-OfficeColor = \\PrintAdmin\203-RC-OfficeColor
203-XM-OffXrX = \\PrintAdmin\203-XM-OffXrX
[238]
238-HB-Jim1BW = \\PrintAdmin\238-HB-Jim1BW
238-HC-PurchColor = \\PrintAdmin\238-HC-PurchColor
238-HM-MFC-A = \\PrintAdmin\238-HM-MFC-A
238-HM-MFC-B = \\PrintAdmin\238-HM-MFC-B
FAX B = \\PRINT01\Purchasing-Printer Room-Fax B
Printer Room Fax = \\PRINT01\Purchasing-Printer Room-Fax
Printer Room PO Printer = \\PRINT01\Purchasing-Printer Room-PO Printer
Printer Room Printer2 New HP = \\PRINT01\Purchasing-Printer Room-Printer2
Printer Room Xerox = \\PRINT01\Purchasing-Printer Room-Xerox
[251]
251-HB-OperBW = \\PrintAdmin\251-HB-OperBW
251-HC-OfficeColor = \\PrintAdmin\251-HC-OfficeColor
251-HM-CustMFC = \\PrintAdmin\251-HM-CustMFC
251-XM-CustWC = \\PrintAdmin\251-XM-CustWC
251-XM-WkOrdWC = \\PrintAdmin\251-XM-WkOrdWC
Director = \\PRINT01\Maintenance-Director-Printer
Energy ED office = \\PRINT01\Maintenance-EnergyED-Printer
Office Xerox = \\PRINT01\Maintenance-Office-Xerox
Operations = \\PRINT01\Maintenance-Operations-Printer
Operations Manager's Office Color = \\PRINT01\Maintenance-Operations Manager Office-Color Printer
Secretary Color = \\PRINT01\Maintenance-Secretary-Color Printer
Supervisor Area = \\PRINT01\Maintenance-Supervisor Area-Printer

 

Edited by Elephant007
Link to comment
Share on other sites

  • Moderators

Elephant007.

No "bonkers" reaction at all - your solution is very like the one I was envisaging (although the implementation is rather different). My only comment would be that the user interface is not that intuitive - it took me a while to realise that I needed to click the "This computer" radio to allow clicks in the ListView - so you might want to think about that. Otherwise - a good solution and it looks as it you have most of this project well in hand.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...