Jump to content

fresch_heit2000

Members
  • Gesamte Inhalte

    49
  • Registriert seit

  • Letzter Besuch

Alle erstellten Inhalte von fresch_heit2000

  1. hatte ich auch mal ... nachdem ich symantec-software deinstalliert hab.. die hat mir die netzwerkkarte rausgeschmissen.. kannst du abgesichert ohne netzwerk booten? mfg stefan
  2. ja geht mit kix .. kann dir gern n beispiel schicken, dann brauchste nur noch an dein system anpassen. wenn du dir dann noch den scriipeditor runterlädst, kannst du es sogar ganz einfach von als exe abspeichern. die führste dann einfach auf den rechnern aus und die einwahl wird automatisch erstellt ;) mfg stefan
  3. hi , is es nich einfacher so: If Exist("@LSERVER\netlogon\DriveMap.ini") @LSERVER = anmeldeserver ... (der netlogon-ordner wird ja eh syncronisiert ;)) damit is egal welcher anmeldeserver genommen wird, und falls einer ausfällt ... geht das script immernoch :) alternativ währ auch folgende wege: $FileLocation="\\s01bdc\netlogon\files\" -den weg nutze ich immer macht es n bischen übersichtlicher $FileLocation=@LDRIVE + "\files und dann kannste mit $FileLocation arbeiten das script an sich funktioniert einwandfrei... habs grad mal getestet. denke eher das du kix falsch aufrufst ...oder das kix auf den client nich installiert is... zeig mal die batch-datei die das script aufruft ... c:\windows\command\XCOPY %0\..\KIX32.EXE %WINDIR%\SYSTEM\ /D /H /I /R /V /Y> NUL --so ruf ich mein script aus der .bat auf funktioniert problemlos unter nt, 2k xp und sogar 2003 wts %WINDIR%\SYSTEM32\KIX32.EXE %0\..\logon.kix mfg stefan
  4. oder such einfach hier ;) http://www.microsoft.com/windows/zak/ Also the freeware utility AdPrintX is very similar to Con2Prt but has additional functionality, including compatibility with Windows 9x systems. (it's also a smaller download) http://www.ss64.com/nt/adprintx.zip mfg stefan
  5. hi hab noch ne lösung für dich: CON2PRT.exe (Zero Admin Kit) Add a network printer to the Control Panel - Printers folder, and/or Disconnect a printer. All commands issued using this utility will affect only the user currently logged in. Con2prt is therefore ideal for managing NETWORK printer connections when used in a login script. Syntax CON2PRT /f CON2PRT /c \\PrintServer\PrintShare CON2PRT /cd \\PrintServer\PrintShare Key /f - remove all network printer connections /c - connect to \\PrintServer\PrintShare /cd - connect to and set PrintShare as the default printer Several switches can be combined in one command line. So you can remove all connections before adding new ones all in one command, you can only specify one default printer. Available for free download at: http://www.microsoft.com/windows/zak/ den befehl kannste ja auch in kix mit reinsetzen so z.b.: $FileLocation=@LDRIVE oder $FileLocation="\\s01bdc\netlogon\files Shell "%COMSPEC% /C $filelocation +\CON2PRT /f" aber vorsicht .. löscht alle druckerverbindungen... mfg stefan
  6. warum so umständlich? ich verbinde meine drucker auch mit kix hab hier 100 user auf 6 etagen... ..bin einfach hergegangen, und hab gruppen (für jede etage) angelegt, und du user zugewiesen. und dann die drucker etagen oder abteilungsweise per script zugewiesen. wenn ein user umzieht, änder ich einfach die etagengruppe ab und schon bekommt er die passenden drucker verbunden. ich fands so am einfachsten. und falls ein drucker mal spinnt (kommt ja auch vor), haben sie noch n paar drucker auf der etage zur auswahl. mfg stefan
  7. hier ein auszug aus meinen login-script: 1. hier wird für jeden rechner eine angelegt RedirectOutput ("n:\inventar\@WKSTA.txt",1) ?"NetBIOS name = "@WKSTA ?"Last login by "@USERID ?"OS = "@PRODUCTTYPE" with "@CSD ?"Memory = "MemorySize(0)" MB" ?"Processor type is "@CPU ?"Processor speed is "@MHZ ?"IP address = "@IPADDRESS0 ?"MAC address = "@ADDRESS ?"This information was gathered on "@DATE" at "@TIME 2. oder so: (schreib alles in eine datei, die du in exel improtieren kannst ) RedirectOutput ("n:\inventar\CSV\inventory.txt",0) ?@WKSTA","@PRODUCTTYPE","@CSD","MemorySize(0)","@CPU","@MHZ","@IPADDRESS0","@ADDRESS"," laufwerksfreigabe usw kannste ja einfach an dein netz anpassen ;) mfg stefan
  8. hi das bekommste auch mit kix in den griff: http://www.adminscripteditor.com/syntax.asp?r=1&act=v&id=5 @ADDRESS (Macro) Available from version 2.33 through the latest release. Syntax @ADDRESS Description First bound MAC address Return Values The @ADDRESS macro returns the MAC address of the first bound network card on the local system. Example To obtain MAC addresses for anything other than the first bound network card, you will need to utilize KiXtart’s COM support and WMI as demonstrated in the example below. Break On $Computer = "." $WMI = GetObject("winmgmts:\\" + $Computer + "\root\cimv2") $Adapters = $WMI.ExecQuery("Select * from Win32_NetworkAdapter",,48) For Each $Adapter in $Adapters ? "AdapterType: " + $Adapter.AdapterType ? " MACAddress: " + $Adapter.MACAddress ? "ProductName: " + $Adapter.ProductName ? "ServiceName: " + $Adapter.ServiceName ? Next Remarks The MAC address of a network card begins with an Organizationally Unique Identifier (OUI) which represents the manufacturer of the NIC. The IEEE maintains this list here. Also see: @IPADDRESS0 @IPADDRESS1 @IPADDRESS2 wenn du noch fragen hast wie du die ausgabe der mac -adressen loggst, schick dich dir gern ein fertiges script. mfg stefan
  9. How can I move shares and their contents from one machine to another? John Savill InstantDoc #15161 John Savill's FAQ for Windows A. A. Moving the actual files and directories is simple, however share information is not contained in the directories, but rather is contained in the registry (under LanmanServer), it is therefore necessary to copy this registry information from the machine currently containing the shares, to the machine that will host the shares: To copy the files you will need to use the SCOPY utility that is supplied with the resource kit to keep the current permission/audit settings SCOPY <current>:\<dir> <new>:\<dir> /o /a /s On the machine that currently hosts the shares, start the registry editor (regedt32.exe, not regedit.exe) Move to the key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Shares Click on Shares, and select Save Key from the Registry Menu Enter the name of a file, e.g. shares.reg and click OK Copy this file to the target machine Again start the registry editor (regedt32.exe) and move to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Shares and select Shares. From the Registry menu, select Restore and select the file you saved, e.g. shares.reg and click Open Warning: You will lose all currently configured shares on the machine You will prompted to continue, click Yes Close the registry editor Reboot the machine and once restarted you will see the new shares mfg stefan
  10. hier noch was: http://support.microsoft.com/default.aspx?scid=kb;EN-US;141589 Microsoft Knowledge Base Article - 141589 How to Restore Share Definitions To Another Server müsste doch das sein was du suchst ... oder hab ich dich falsch verstanden mfg stefan
  11. mit kix kannste auf ja wenigstens einfach die pfade zu den homelaufwerken ändern mach einfach ne abfrage rein, in der freigabenamen überprüft werden. z.b wenn die freigabe auf dem neuen server/pfad exestieren, soll er den entsprechenden use befehl aus führen, sonst soll der das h-laufwerk zu dem alten pfad verbinden. so bekommt der user von der umstellung wenigstens nix weiter mit. nur ob die freigaben sich beim kopieren mitnehmen lassen weis ich nich... könntest höchstens mal folgendes versuchen: Microsoft Knowledge Base Article - 174273 How to Copy Files and Maintain NTFS and Share Permissions hab hier grad das gleiche prob versuch auch grad alle homeverzeichnisse auf n neuen server umzuziehen hast du schon ne lösung gefunden? mfg stefan
  12. hier der kix-befehl: SetWallpaper ("@LSERVER\netlogon\backgrounds\$x.bmp",1) davor noch ne abfrage (z.b. rechnername oder os oder ip) dass es nur auf dem terminalserver oder den ts-servern ausgeführt wird und fertig. sin nur 2 zeilen im script ...@smueri natürlich hast du recht. ich machs halt lieber so weil ich damit an einer stelle (kix-sxcript ) alles einstellen kann(is halt geschmackssache). machts meinem kollegen auch leichter , weil nich jeder erst suchen muss wo was eingestellt wurde;) ausserdem spar ich mich so div. gruppenrichtlinien anzupassen, und es läuft problemlos von nt bis 2003 server. mfg stefan
  13. hier is vielleicht was für dich http://www.adminscripteditor.com/scriptlibrary/view.asp?id=324 mfg stefan
  14. schau dir mal das script an ... http://www.kixscripts.com/scriptlibrary/view.asp?id=250 mfg stefan
  15. hi, hab hier meine kix-beispielscripte mal durchsucht - das hier könntest du mal probieren. das script legt die proxyeinstellungen fest... könnte evtl kurzfristig helfen, überleg auch grad noch wo die einstellung herkommt... halt du hattest isa? is der isaclient noch drauf? der kann auch proxyserver festlegen... hab hier auchmal proxy aüber isaclient festgelegt... is aber zu nervig gewesen machs inzwischen mit dem script .hab hier 2 isa-server und stells über gruppen in kix ein. ;=============================================================================================== ;X:\Documentatie\epacity\proxy.kix 10-12-2003 9:01:22 AdminEkin ;=============================================================================================== Break on ;Vul bij $NEWPROXY het nieuwe IP adres in van de Proxy server. ;Voorbeeld: $NEWPROXY="10.20.30.1:80" $NEWPROXY=":80" WriteValue("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings", "ProxyEnable", "1", "REG_DWORD") WriteValue("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings", "ProxyServer", $NEWPROXY, "REG_SZ") WriteValue("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings", "ProxyOverride", "10.*;*.gti;", "REG_SZ") WriteValue("HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main", "Start Page", "http://gti-ri.gti/", "REG_SZ")
  16. ja is möglich hab hier n testscript gefunden das auf client´s die netzwerkeinstellung von festen ip´s auf dhcp umstellt. musst nur die reg-werte ändern, und es stellt dann von dhcp auf feste um ;) mfg stefan Written in Kix converts a static addressing client to DHCP. ; Name : CONVDHCP.KIX ; Author : Jasper Yue ; Last Revised : 2003.02.12 ; Date Started : 2003.02.12 ; Version : 2003.02.12.01 ; Description: ; 1. Convert Windows NT4 systems from static to dhcp addressing. ; 2. Remove hard coded DNS and WINS entries. ; 3. Written to run as logon script. ; 4. Requires local administrator privilege to complete a list of things in ; order to convert the system to DHCP successfully. The privilege is ; required to change the service startup mode and modify registry key ; entries. ; You will copy these files to the netlogon share: ; shutdown.exe from resource kit ; convdhcp.kix this script ; kix32.exe reuqired compiler. tested with 4.12 $ComputerName = ReadValue("HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ComputerName\ActiveComputerName","ComputerName") $HKLM = "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services" $Index = 0 $Reboot = "NO" :Loop1 $KeyName = ENUMKEY( "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkCards\" , $Index) $RC = @ERROR $NicYN = 0 $NicYN = ReadValue("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkCards\$Keyname","Hidden") IF $NicYN = 1 $Index = $Index + 1 $NicYN = 0 goto Loop1 ENDIF $NicType = ReadValue("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkCards\$KeyName","ServiceName") $DHCPEnabled = ReadValue("$HKLM\$NicType\Parameters\TCPIP","EnableDHCP") $Index = $Index + 1 If $RC = 0 IF $DHCPEnabled <> "1" $Reboot = "YES" ;--------------------------------------------------- ;Updating to DHCP... ;--------------------------------------------------- ;--------------------------------------------------- ; Set DHCP Settings ;--------------------------------------------------- $ReturnCode = WRITEVALUE( "$HKLM\$NicType\Parameters\TCPIP", "EnableDHCP" , "1" , "REG_DWORD") $ReturnCode = WRITEVALUE( "$HKLM\$NicType\Parameters\TCPIP", "IPAddress" , "0.0.0.0" , "REG_MULTI_SZ") $ReturnCode = WRITEVALUE( "$HKLM\$NicType\Parameters\TCPIP", "SubnetMask" , "0.0.0.0" , "REG_MULTI_SZ") $ReturnCode = WRITEVALUE( "$HKLM\$NicType\Parameters\TCPIP", "DefaultGateway" , "" , "REG_MULTI_SZ") $ReturnCode = WRITEVALUE( "$HKLM\DHCP" , "Start" , "2" ,"REG_DWORD") ;--------------------------------------------------- ; Clear WINS, DNS, and check Enable DNS Windows Resolution in WINS ;--------------------------------------------------- $ReturnCode = WRITEVALUE( "$HKLM\NetBT\Adapters\$NicType" , "NameServer" , "" , "REG_SZ") $ReturnCode = WRITEVALUE( "$HKLM\NetBT\Adapters\$NicType" , "NameServerBackup" , "" , "REG_SZ") $ReturnCode = WRITEVALUE( "$HKLM\NetBT\Parameters" , "EnableDNS" , "1" , "REG_DWORD") $ReturnCode = WRITEVALUE( "$HKLM\TCPIP\Parameters" , "NameServer" , "" , "REG_SZ") $ReturnCode = WRITEVALUE( "$HKLM\TCPIP\Parameters" , "SearchList" , "" , "REG_SZ") $ReturnCode = WRITEVALUE( "$HKLM\TCPIP\Parameters" , "Domain" , "" , "REG_SZ") Endif goto Loop1 Endif ;--------------------------------------------------- ; Reboot the PC ;--------------------------------------------------- If $Reboot = "YES" ;--------------------------------------------------- ;Log Computer Name of changed PCs... ;--------------------------------------------------- $RptFile="\\Reporting_Server\Share\Log\" + @WKSTA + ".txt" $rc_write=WriteProfileString($RptFile,"Local","Name","$ComputerName") shell '%comspec% /c shutdown.exe /REBOOT /T:1' Endif
  17. oder so ;) das oben erstellt halt eine datenbank ;) ich selber logge z.b. anmelde zeiten anmelderechner, software inventarisierung und die hardware über mein anmeldescript mit und schreib alle daten in txt dateien und csv-files
  18. hier findest du viele beispiele, komplettee scripte oder auch nur funktionen. http://www.kixscripts.com/scriptlibrary/index.asp mfg stefan
  19. hi, das mit den hintergrundbilder find ich grad nich, aber falls du mal auf die idee kommst, standartdookumenten-pfade mit kix festzulegen, hier eine lösung: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrenWriteValue("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders","Personal","\\uggla\homes","REG_SZ") WriteValue("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders","My Music","\\uggla\homes\Min musik","REG_SZ") WriteValue("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders","My Pictures","\\uggla\homes\Mina bilder","REG_SZ") WriteValue("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders","Personal","\\uggla\homes","REG_SZ") WriteValue("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders","My Music","\\uggla\homes\Min musik","REG_SZ") WriteValue("tVersion\Explorer\User Shell Folders","My Pictures","\\uggla\homes\Mina bilder","REG_SZ") mfg stefan
  20. hi, mit kix müsste es gehen, was willste den genau machen. vielleicht hab ich ja hier n passendes script. arbeite seit 3 jahren nur noch mit kix anmeldescripten is wirklich viel damit möglich mfg stefan
  21. versuchs mal damit ;) mfg stefan ;=============================================================================================== ;**** Created with KiXscripts Editor | http://KiXscripts.com **** Break ON CLS ;**** Last Modified on 2/22/2003 at 6:14:41 PM by chassan **** ;**** craighassan@techemail.com **** ;=============================================================================================== ; Create an Access database and populate with domain and PC info from Active Directory. Dim $accDB ; !!!!! Microsoft Access must exist on host PC !!!!! ; Create an instance of Access $accDB = CreateObject("Access.Application") ; Check for error If @ERROR <> 0 Gosub ACCESSERROR EndIf ; Path and File name $DBPath = @SCRIPTDIR + "\" $DBNameA = Split(@SCRIPTNAME, ".") For Each $Element In $DBNameA If $Element = "kix" Else $DBName = $Element + ".mdb" EndIf ; Create the Database $newTest = $accDB.NewCurrentDatabase($DBPath + $DBName) ; Wait for DB to be created Sleep 1 $ = SetTitle ("Information stored in: " + $DBPath + $DBName)? ; Connect to DB $db = CreateObject("ADODB.Connection") $db.Open("Driver={Microsoft Access Driver (*.mdb)}; DBQ="+ $DBPath + $DBName) ; !!!!! Active Directory? !!!!! ; Connect to AD to retrieve domain info $colInfo = CreateObject("ADSystemInfo") $rtn = $colInfo.DomainDNSName $rtn = Split($rtn, ".") $eNum = 0 For Each $Element In $rtn If $eNum = 0 $domName = $Element Else $domSuffix = $Element EndIf $eNum = $eNum + 1 Next ; Create table in DB to store domain info $sSQL = "CREATE TABLE DOMAIN (DOMAINNAME TEXT(255) PRIMARY KEY, DOMAINSUFFIX TEXT(255))" $rs = $db.Execute($sSQL) ; Populate table with domain info $sSQL = "INSERT INTO DOMAIN (DOMAINNAME, DOMAINSUFFIX) VALUES ('" + $domName + "', '" + $domSuffix + "')" $rs = $db.Execute($sSQL) ; Connect AD to retrieve domain PC info $ADS_SCOPE_SUBTREE = 2 $objConnection = CreateObject("ADODB.Connection") $objCommand = CreateObject("ADODB.Command") $objConnection.Provider = "ADsDSOObject" $objConnection.Open "Active Directory Provider" $objCOmmand.ActiveConnection = $objConnection $objCommand.CommandText = "Select Name, Location from 'LDAP://DC=" + $domName + ",DC=" + $domSuffix + "' " + "where objectClass='computer'" For Each $Element In $objCommand.Properties If $Element.Name = "Page Size" $Element.Value = "1000" EndIf If $Element.Name = "Timeout" $Element.Value = "30" EndIf If $Element.Name = "Searchscope" $Element.Value = $ADS_SCOPE_SUBTREE EndIf If $Element.Name = "Cache Results" $Element.Value = "False" EndIf Next $objRecordSet = $objCommand.Execute ; Count of PC's found $compCount ; !!!!! AD EXIST? !!!!! If @ERROR <> 0 Gosub ADERROR EndIf ; We made it this far... ; Create table to store PC from AD names in DB Table named AllComputers $sSQL = "CREATE TABLE AllComputers (id COUNTER, ComputerName TEXT(255) PRIMARY KEY, Location TEXT(255))" $rs = $db.Execute($sSQL) ; If the table exists delete it so we have fresh info If @ERROR <> 0 $sSQL = "DROP TABLE AllComputers" $rs = $db.Execute($sSQL) $sSQL = "CREATE TABLE AllComputers (id COUNTER, ComputerName TEXT(255) PRIMARY KEY, Location TEXT(255))" $rs = $db.Execute($sSQL) EndIf ; Move to first record in AD Recordset $objRecordSet.MoveFirst ; Loop through AD records to enum PC names Do $strComputer = $objRecordSet.Fields("Name").Value ? $strComputer ; Increment Count of PC's found $compCount = $compCount + 1 ; Populate table with PC names and locations $sSQL = "INSERT INTO AllComputers (ComputerName, Location) VALUES ('" + $objRecordSet.Fields("Name").Value + "', '" + $objRecordSet.Fields("Location").Value + "')" $rs = $db.Execute($sSQL) $objRecordSet.MoveNext Until $objRecordSet.EOF Sleep 5 $accDB.Visible = True $ = $accDB.OpenCurrentDatabase($DBPath + $DBName) ;$accDB.Quit ;Del $DBPath + $DBName CLS ??? " Information collected successfully." ?????? " Database located at: " + $DBPath + $DBName Sleep 10 Do Sleep 5 Until $accDB.Visible = False ; SUCCESS! Exit 0 ; !!!!! Access EXIST? !!!!! ; Error occurred we assume it is because of Microsoft Access not existing :ACCESSERROR CLS Color r+/n Beep Box (0, 1, 1, 75, "- ") ??? "Error: " + @ERROR ???? " This Script requires Microsoft Access to be installed!" ?? " If Microsoft Access is installed and working properly" ? " then there was an error creating a Microsoft Access instance object" ? " with this script." ?? " This script was designed to operate with Microsoft Access XP but should be backward compatible!" ????? " Script Exit Code - 998" Box (23, 1, 1, 75, "- ") Sleep 30 ; Exit with 998 ; Microsoft Access must exist for this script to work $accDB.Quit Exit 998 ; !!!!! AD EXIST? !!!!! ; Error occurred we assume it is because of AD or domain info :ADERROR CLS Color r+/n Beep Box (0, 1, 1, 75, "- ") ??? "Error: " + @ERROR ???? " This Script requires Active Directory!" ?? " If Active Directory is installed and working properly" ? " then domain information is being incorrectly reported" ? " by this script." ?? " This script is designed to operate in single domain environment!" ????? " Script Exit Code - 999" Box (23, 1, 1, 75, "- ") Sleep 30 ; Exit with 999 ; AD must exist for this script to work $accDB.Quit Exit 999
  22. delprinterconnection("\\fsdxxx\dhp_ki1")
  23. hi mit kix gehts doch ganz einfach... hier die funtion die ich nutze: $Lserver = @LServer ;*********************************************************************** ;** ;** Syncronize the local system time with the logon server. The PDC ;** server fps syncronizes with NTP server ;** Function SyncTime() $TimeRadioButton.Value=1 DBGMessage ("Info", "Syncing Time:" ) Progress( "Syncronisiere Uhrzeit") If $NT_Mode="yes" SetTime "\\" + $Lserver If @ERROR<>0 DBGMessage ("Error", " - Error Finding Time Server : " + $Lserver ) Else DbgMessage("Info"," - Syncronisiere Uhrzeit mit : " + $Lserver) EndIf EndIf $TimeRadioButton.Value=0 $TimeRadioButton.Enabled =0 EndFunction ps. wenn du möchtst schick ich dir mal mein ganzes loginscript macht noch n bischen mehr verbindet drucker anhand von gruppenzugehörigkeit, schreibt logfiles (anmeldezeit, softwareinventar, hardware inventar in csv-files) verbindet laufwerke hat ne nette gui setzt die uhrzeit usw liest eine textdatei ein und zeigt sie als news an, und liest sogar die servicepack version aus (brauch ich demnächst für software /patchverteilung) demnächst setz ich noch die funktionen rein um ipadressen auszulesen und zu verwenden, hintergrundbilder für terminalsessions festzulegen, dhcp /dns und proxyeinstellungen anhand von gruppen festzulegen geht mit kix eigentlich ganz einfach auf kixscripts.com findest du eigentlich alle funtionen. musst halt nur noch anpassen ;) und mit kixforms zu arbeiten is auch ganz einfach, da gibts einen verdammt guten freeware-editor mfg stefan
  24. hi, klar kannst du mit kix gruppenabfragen machen, und die auch zur laufwerksverbindung nutzen. wenn du möchtest schick ich dir gern mal ein beispiel. verwedest du nur kix? ich nehm auch noch kixforms - mach damit auch noch relativ einfach ne nette gui zum script. mfg stefan
×
×
  • Neu erstellen...