Jump to content

mounir

Member
  • Posts

    50
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Switzerland

Everything posted by mounir

  1. hi everyone, on this code which automatically generates a frame with encapsulated labels, I would like to generate a maximum of 4 frames. Until then, it works. The problem is that the variable i (number of frames) is not updated when one of the frames is deleted. The variable r is the one I have to retrieve to update the value i. I tried with return and callback without success. try: from Tkinter import * except: from tkinter import * from tkinter import messagebox # Librairie des fenêtres d'alerte def removeLabel(var): global frames global i z = -1 for frame in frames: z = z + 1 # Check the text variable of the label of this frame if frame.winfo_children()[4].var == var: # 4 est le nombre de labels à générer dans une frame # Supprime frame frame.destroy() # Mise à jour du nombre de frame frames = frames[:z] + frames[z+1:] z = -1 # Mise à jour du nombre de frame r = 0 for frame in frames: frame.winfo_children()[4].var.set(r) r = r + 1 i = i - 1 print("i", i) def addNewLabel(): global frames, i global table var = IntVar() frame = Frame(root) i = i + 1 if i <= 5: frame.grid(row=i, column=4) var.set(len(frames)) l = Label(frame, text="test") l.grid(row=0, column=0) l = Label(frame, textvariable=var) l.grid(row=0, column=1) l = Label(frame, textvariable=var) l.grid(row=0, column=2) l = Label(frame, textvariable=var) l.grid(row=0, column=3) l = Label(frame, textvariable=var) l.grid(row=0, column=4) l.var = var b = Button(frame, text="Remove", command=lambda: removeLabel(var)) b.grid(row=0, column=5) frames.append(frame) # liste des frames générée print("var.get() ", var.get(), " i ",i) # var.trace("w", lambda name, index, mode, i=i: removeLabel(i)) # print("eeeee", i) if i > 5: # Limite du nombre de 10 frames à générer messagebox.showinfo("Info","Seulement 10 huiles peuvent être sélectionées") c.configure(state=DISABLED) return "break" print("+i+",i) if __name__ == '__main__': root = Tk() frames = [] table = [] ind = [] ind1 = [] i = 1 c = Button(root, text="add label", command=addNewLabel) c.grid(column=0, row=0) root.mainloop()
  2. It must go through the "Task Scheduler" as the setting of "Small Icons Office" can be performed only after the "Preparing Desktop" final Windows installation process. !OK 4 - AutoUnattend.XML WAIK UAC_DesktopIconSmall.pdf
  3. thank you for oyur answer! please, can you give more information because is new for me! you mean, i must put my code vbs or link runing my vbs file into file cmd and make the runing file cmd in the commande FirstLogonCommands of specialize section? what is the permission please! thank you in advance of your answer!
  4. that is writing the launch of the VBS file is just in AutoUnattend.xml? <settings pass="oobeSystem"> ... <SynchronousCommand wcm:action="add"> <Description>IconSize Desktop</Description> <CommandLine>cmd /k start "" /wait cscript %SystemDrive%\VBS\SmallIconDeskTop\script1.vbs</CommandLine> <Order>2</Order> </SynchronousCommand> ... </settings> thank you in advance for your answwer
  5. sur! the two pack of the script i start from Microsoft-Windows-Shell-Setup | FirstLogonCommands and the tirth test is the file SetupComplete.CMD! not work in this way! thank you in advance for your suggestion
  6. Hi every one! In my automatic installation, i will to setting the small Icon of the desktop! --> I try the first solution : have 3 files File name : RunVBS.VBS Set WshShell = CreateObject("Wscript.Shell")Set ofs = CreateObject("Scripting.FileSystemObject")strScriptDir = ofs.GetParentFolderName(Wscript.ScriptFullName)strFile = strScriptDir & "\SmallIcon.vbs"WshShell.Run "C:\Windows\System32\cscript.exe " & Chr(34) & strFile & Chr(34)wscript.sleep 2000strFilea = strScriptDir & "\ReStartExploreWin.vbs"WshShell.Run "C:\Windows\System32\cscript.exe " & Chr(34) & strFilea & Chr(34)File name : SmallIcon.VBS 'Petite taille : valeur décimal : 32 - valeur Héxadécimal : 20'Moyenne taille : valeur décimal : 48 - valeur Héxadécimal : 30'Grande taille : valeur décimal : 96 - valeur Héxadécimal : 60'-- Il faut kill explorer puis le relancer!Option ExplicitDim objShell, strRoot, strRoot1, strModify, strDeletestrRoot = "HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags\1\Desktop\IconSize"strRoot1 = "HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics\Shell Icon Size"' Create the Shell objectSet objShell = CreateObject("WScript.Shell")strModify = objShell.RegWrite(strRoot,"00000032", "REG_DWORD")'WScript.Echo "Error No: " & err.number & " check " & strRootstrModify = nullstrModify = objShell.RegWrite(strRoot1,"32", "REG_SZ")'WScript.Echo "Error No: " & err.number & " check " & strRoot1strModify = nullWScript.Quit' End of .RegWrite example script.File name : ReStartExploreWin.vbs On Error Resume Next' Kill Explorer.exestrComputer = "."Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")Set colProcessList = objWMIService.ExecQuery _ ("Select * from Win32_Process Where Name = 'explorer.exe'")For Each objProcess in colProcessList objProcess.Terminate(1)Next' Launch Explorer.exeSet objShell = CreateObject("Wscript.Shell") objShell.Run "explorer.exe" Set objShell = NothingWscript.exit--> I try the second solution : have 3 files File name : REG_RUN.VBS wscript.exe "c:\vbs\smallicondesktop\invisible.vbs" "c:\vbs\smallicondesktop\iconbur.bat"File name : Invisible.VBS CreateObject("Wscript.Shell").Run """" & WScript.Arguments(0) & """", 0, FalseFile name : IconBur.Bat @echo off taskkill /im explorer.exe /f reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags\1\Desktop" /v IconSize /t REG_DWORD /d 00000032 /f "%windir%\explorer.exe"With the two solution not work when the automatique installation finish! I have only windows CLI open! But when i use it, it work fine! I try solution with SetupComplete.CMD, it not work to! I think we should wait for the full automatic configuration of the office to start my three files. would anyone please an idea or solution. thank you in advance
  7. thank you for your answer! Why is limited and where can find information about that? have some script available for up this limited context menu items? a+
  8. Hi every on! On Windows 7 Pro 64bits, I will make an link in ContextMenu on "Deskop" and "My Computer" My setting have 1 Master Menu with 18 Sub-Commands and 1 Sub Menu with 5 Sub-Commands The Sub-Menu is not available Normaly i must have that : I make a simple test like that : why i can have more 17 link command in a ContextMenu? I check many informations on internet unsuvcessfull! find my scrit here and thank you in advance for some answers or solution Windows Registry Editor Version 5.00; Windows 7 Professionnel Service Pack 1;===========================================================; Menu Contextuel;===========================================================; ===================================; Menu Perso; ===================================;=========;Menu Maitre;=========--> Bureau[HKEY_CLASSES_ROOT\DesktopBackground\Shell\TechWan2003_bur]"MUIVerb"="TechWan2003""Icon"="%windir%\\system32\\LIB.DLL,7""Position"="Top""ExtendedSubCommandsKey"="Menu_Tech";--> Poste de travail[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\TechWan2003_Ord]"MUIVerb"="TechWan2003""Icon"="%windir%\\system32\\LIB.DLL,7""Position"="Top""ExtendedSubCommandsKey"="Menu_Tech";===============================; Menu_Tech;Sous-Command & Sous-Menu Menu Maitre;===============================;Sous-Command 1 - Menu Maitre;-------------------------------[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd01]"MUIVerb"="Ajout/Suppression de Programmes""Icon"="%windir%\\system32\\LIB.DLL,5"@=""[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd01\Command]@="rundll32.exe shell32.dll,Control_RunDLL \"appwiz.cpl\"";Sous-Command 2 - Menu Maitre;-------------------------------[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd02]"MUIVerb"="Gestionnaire de périphériques""Icon"="%windir%\\system32\\LIB.DLL,1"@=""[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd02\Command]@="c:\\windows\\system32\\mmc.exe /s c:\\windows\\system32\\DevMgmt.msc";Sous-Command 3 - Menu Maitre;-------------------------------[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd03]"MUIVerb"="Gestionnaire des Disques";ligne de séparation vers le bas;"CommandFlags"=dword:00000040@=""[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd03\Command]@="c:\\windows\\system32\\mmc.exe /s c:\\windows\\system32\\diskmgmt.msc";Sous-Command 4 - Menu Maitre;-------------------------------[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd04]"MUIVerb"="MSConfig - Utilitaire de configuration système";ligne de séparation vers le bas;"CommandFlags"=dword:00000040[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd04\Command]@="c:\\Windows\\System32\\msconfig.exe";Sous-Command 5 - Menu Maitre;-------------------------------[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd05]"MUIVerb"="Panneau de Configuration""Icon"="%windir%\\system32\\LIB.DLL,3"@=""[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd05\Command]@="rundll32.exe shell32.dll,Control_RunDLL";Sous-Command 6 - Menu Maitre;-------------------------------[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd06]"MUIVerb"="Console Services"[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd06\Command]@="c:\\windows\\system32\\mmc.exe /s c:\\windows\\system32\\services.msc";Sous-Command 7 - Menu Maitre;-------------------------------;Arrêter le Système[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd07]"MUIVerb"="[Arrêter 5'']""Icon"="%windir%\\system32\\LIB.DLL,2"[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd07\Command]@="shutdown -s -f -t 5";Sous-Command 8 - Menu Maitre;-------------------------------;Redémarrer[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd08]"MUIVerb"="[Redémarrer 5'']""Icon"="%windir%\\system32\\LIB.DLL,6"[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd08\Command]@="shutdown -r -f -t 5";Sous-Command 9 - Menu Maitre;-------------------------------;Fermer la Session[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd09]"MUIVerb"="[Fermer la Session 5'']""Icon"="%windir%\\system32\\LIB.DLL,0"[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd09\Command]@="shutdown -l -f -t 5";Sous-Command 10 - Menu Maitre;-------------------------------;Outils d'Administration[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd10]"MUIVerb"="Outils d'Administration""Icon"="%windir%\\system32\\LIB.DLL,0"[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd10\Command]@="control admintools";Sous-Command 11 - Menu Maitre;-------------------------------;Gestionnaire des Tâches[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd11]"MUIVerb"="Gestionnaire des Tâches""Icon"="%windir%\\system32\\LIB.DLL,0"[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd11\Command]@="taskmgr";Sous-Command 12 - Menu Maitre;-------------------------------;Diagnostic de mémoire Windows[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd12]"MUIVerb"="Diagnostic de mémoire Windows""Icon"="%windir%\\system32\\LIB.DLL,0"[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd12\Command]@="mdsched";Sous-Command 13 - Menu Maitre;-------------------------------;Gestionnaire des Tâches Planifiées[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd13]"MUIVerb"="Gestionnaire des Tâches Planifiées""Icon"="%windir%\\system32\\LIB.DLL,0"[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd13\Command]@="c:\\windows\\system32\\mmc.exe /s c:\\windows\\system32\\taskschd.msc";Sous-Command 14 - Menu Maitre;-------------------------------;Centre Réseau et Partage[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd14]"MUIVerb"="Centre Réseau et Partage""Icon"="%windir%\\system32\\LIB.DLL,0"[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd14\Command]@="c:\\windows\\system32\\control.exe /name microsoft.networkandsharingcenter";Sous-Command 15 - Menu Maitre;-------------------------------[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd15]"MUIVerb"="Cartes Réseaux - NIC""Icon"="%windir%\\system32\\LIB.DLL,5"@=""[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd15\Command]@="rundll32.exe shell32.dll,Control_RunDLL \"ncpa.cpl\"";Sous-Command 16 - Menu Maitre;-------------------------------[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd16]"MUIVerb"="Vider le chache [IPConfig FlushDNS]"[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd16\Command]@="C:\\windows\\system32\\cmd.exe /k ipconfig /flushdns";Sous-Command 17 - Menu Maitre;-------------------------------[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd17]"MUIVerb"="1 - Réinitialiser IP NIC"[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd17\Command]@="C:\\windows\\system32\\cmd.exe /k ipconfig /Release";Sous-Command 18 - Menu Maitre;-------------------------------[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd18]"MUIVerb"="2 - Renouvellement IP NIC"[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd18\Command]@="C:\\windows\\system32\\cmd.exe /k ipconfig /Renew";Sous-Menu 1 - Maitre;---------------------[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Menu1]"MUIVerb"="MMC""ExtendedSubCommandsKey"="Menu_Tech.SMenu1";==================================; Menu_Tech.SMenu1;Sous-Command & Sous-Menu - Sous-Menu 1;===================================;Sous-Command 1 - Sous-Menu 1;-------------------------------;Stratégie de Groupe[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM1]"MUIVerb"="Stratégie de Groupe"@=""[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM1\Command]@="c:\\windows\\system32\\mmc.exe /s c:\\windows\\system32\\gpedit.msc";Sous-Command 2 - Sous-Menu 1;-------------------------------;Gestion de l'ordinateur[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM2]"MUIVerb"="Gestion de l'ordinateur"@=""[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM2\Command]@="c:\\windows\\system32\\mmc.exe /s c:\\windows\\system32\\Compmgmt.msc";Sous-Command 3 - Sous-Menu 1;-------------------------------;Utilisateurs et Groupes Locaux[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM3]"MUIVerb"="Utilisateurs et Groupes Locaux"@=""[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM3\Command]@="c:\\windows\\system32\\mmc.exe /s c:\\windows\\system32\\lusrmgr.msc";Sous-Command 4 - Sous-Menu 1;-------------------------------;Gestion des Disques[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM4]"MUIVerb"="Gestion des Disques"@=""[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM4\Command]@="c:\\windows\\system32\\mmc.exe /s c:\\windows\\system32\\diskmgmt.msc";Sous-Command 5 - Sous-Menu 1;-------------------------------;Observateur des Evénements[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM5]"MUIVerb"="Observateur des Evénements"@=""[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM5\Command]@="c:\\windows\\system32\\mmc.exe /s c:\\windows\\system32\\eventvwr.msc"; ===================================; Menu Perso; ===================================
  9. Hi every one! i try build an answer file Autounattend for DVD with WAIK! I have only one operating sysetm the selection of operating system not work (not hide automatiquetly) the options of language and keyborad is hidden well! for check on the version windows, i use two methode! i have these informations : index : 1 Nom : Win 7 RTM Pro FR x64 [M7V] Description : Windows 7 PROFESSIONAL i try use the key Index NAme or Description, but not work! Thank you, in advance for your help!
  10. I need more information! In Winre.WIM have index 1 and 2! I must setting the two index or not! I test many setting but i never have the keyboard swiss french need help please
  11. Thank you for your answer! I test it and is the same way! i not have the french swiss keybard! I think is right : Dism /Image:%Mount% /Set-SySLocale:fr-CH I think in the batch file, some comand is necesary! tks for your futur help!...
  12. Hello Everybody I try to build Windows PE x86 with keyboard Swiss French! Here is the batch file -------------- WinRE.BAT ------------------------------------ @echo off REM ------------------------------------------------------ REM Microsoft Windows Setup x86 REM Vers.7 - version 6.1.7600.16385 - French REM ------------------------------------------------------ set HLab=E: set RLab=Labo set RMount=Mount set RLang=Lang set RLIPBoot=LIPWinPE6.1.7600.16385 set RDVD=DVD set Mount=%HLab%\%RLab%\%RMount% set Labo=%HLab%\%RLab% set DVD=%Labo%\%RDVD% set LangB=%Labo%\%Rlang%\%RLIPBoot% REM --------------------------- REM Traitement Boot.WIM Index:2 REM --------------------------- Echo Echo Echo ------------------------------------- Echo ..:: Traitement Boot.WIM Index:2 ::.. Echo ------------------------------------- Echo Xcopy %DVD%\Boot.WIM %Labo%\WinPEx86\Boot.WIM /y ImageX /MountRW %Labo%\WinPEx86\Boot.wim 2 %Mount% Start /wait dism /image:%Mount% /GET-Packages Start /wait dism /Image:%Mount% /Add-Package /PackagePath:%LangB%\fr-FR\LP.CAB Start /wait dism /Image:%Mount% /Add-Package /PackagePath:%LangB%\fr-FR\WinPE-Scripting_fr-fr.CAB Start /wait dism /Image:%Mount% /Add-Package /PackagePath:%LangB%\fr-FR\WinPE-srt_fr-fr.CAB Start /wait dism /Image:%Mount% /Add-Package /PackagePath:%LangB%\fr-FR\WinPE-WDS-Tools_fr-fr.CAB Start /wait dism /Image:%Mount% /Add-Package /PackagePath:%LangB%\fr-FR\Winpe-wmi_fr-fr.CAB Start /wait dism /Image:%Mount% /Add-Package /PackagePath:%LangB%\fr-FR\Winpe-Setup_fr-fr.CAB Start /wait dism /Image:%Mount% /Add-Package /PackagePath:%LangB%\fr-FR\Winpe-Setup-Client_fr-fr.CAB Start /wait dism /image:%Mount% /GET-Packages REM ------------------ Start /wait dism /image:%Mount% /GET-Intl rem Dism /Image:%Mount% /Set-UILang:fr-FR rem Dism /Image:%Mount% /Set-SySLocale:fr-CH rem Dism /Image:%Mount% /Set-UserLocale:fr-CH rem Dism /Image:%Mount% /Set-InputLocale:100c:0000100c rem Dism /Image:%Mount% /Set-TimeZone:"Romance Standard Time" intlcfg -InputLocale:100C:0000100C -Image:%Mount% intlcfg -SySLocale:fr-CH -Image:%Mount% intlcfg -UserLocale:fr-CH -Image:%Mount% intlcfg -UILang:fr-FR -Image:%Mount% intlcfg -TimeZone:"Romance Standard Time" -Image:%Mount% intlcfg -report -Image:%Mount% Start /wait dism /image:%Mount% /GET-Intl REM ------------------ Xcopy %Labo%\WinPEshl.ini %Mount%\Windows\System32\ /y REM %Mount%\sources\Lang.InI Start /wait dism /Image:%Mount% /Gen-LangInI /Distribution:%Mount% ImageX /boot /capture %Mount% %Labo%\WinPEx86\ISO\Sources\Boot.WIM "WinRE" OSCDImg -n -m -b%Labo%\WinPEx86\etfsboot.com %Labo%\WinPEx86\ISO %Labo%\Final1.ISO Imagex /UnMount %Mount% /commit Echo ------------------------------------- echo ..:: DVD WinRE Fini ::.. Echo ------------------------------------- ------------------ WinPEshl.InI -------------- [LaunchApp] AppPath=X:\Sources\Recovery\Recenv.ExE ------------------------------- I check all setting in the mount and registry Default! All is fine I have keyboard "French" but need "French (swiss)" See pictures... Who can help me! somethink in batch file is wrong or i forget somethink to do Thank you in advance for your answer
  13. OK! I find solution after many test "The application failed to initialize properly (0xc0000006) - Console commande CLI --> SFC /Scannow The two software "Sony DVD Architect Pro 5.x" and "Nokia PC Suite 7.x" work now... have fun...
  14. yesterday night, i uninstall .NET Framwork 1.x 2.x and 3.x and doing the update! The problem is same I uninstall Kaspersky and Deamon tools too! The problem is same I unplug my two reader dvd and check on bios (not available) But the explorer windows show me one reader DVD with letter "D:" I not understand why i have this read dvd! Please, how i can delete on registry some key or have you solution ... thank you in advance for your answer! before, The Sony DVD Architect Pro 5.x work very well since one year....
  15. i unsinstall the application but the problem is same! i see the application use .NET Framework 3.x Thank you i advance for your answer
  16. i have this message : "The application failed to initialize properly (0xc0000006)" when i start this software : "Sony DVD Architect Pro 5.x" I check and clean my registry and check virus with Kaspersky and malwareByte (i not find any virus) I disconnected the two drives phisic IDE controller! Windows XP Pro always displays a DVD player available! I not find any official information about this error code : "The application failed to initialize properly (0xc0000006)" The executable of "Sony DVD Architect Pro 5.x" is "dvdpro.exe" thank you very much for your answer.... have fun....
  17. Hello everybody! I want my own email server for Intanet is also to receive and send emails from other provider as hotmail or gmail! This domain without LDAP (peer networking) - I have a dynamic IP I installed Kerio MailServer 6.7.3! Configuration is as follows: ====================== Services: POP3 110 SMTP 25 HTTP 81 (for webmail) Domaine: Internet host name: hpzd7066ea (is the name of the machine) Domain Name: srvimail.no-ip.org SMTP Server: SMTP Relay Options ----------------------- Allow relay only for: Users authnetifiés via SMTP for outgoing mail SMTP Routing -------------- Router directly using DNS MX records Download POP3: POP3 server: srvimail.no-ip.org with the admin account Test server: =============== through webmail: http://srvimail.no-ip.org:81 send email: Admin to User1 - is ok! send email: User1 to User2 - is ok! send email to my hotmail server Admin: is ok! send email to my hotmail server User2: is ok! send email from my server to hotmail -- i receive this message -------------------- <xxxxxxxxx@hotmail.com> (mx4.hotmail.com: 550 DY-001 Mail rejected by Windows Live Hotmail for policy reasons. We generally do not accept email from dynamic IP's as they are not typically used to deliver unauthenticated SMTP e-mail to an Internet mail server. http://www.spamhaus.org maintains lists of dynamic and residential IP addresses. If you are not an email / network admin please E-mail/Internet contact your Service Provider for help. Email / network admins, please visit http://postmaster.live.com for email delivery information and support) --------------------- NO-IP configuration: --------------------- how do I properly configure NO-IP! MX Record is it good configuration tools? How does configure your MX Record? give me an example please! why I did not address POP3.srvimail.no-ip.org - SMTP.srvimail.no-ip.org? thank you in advance for your answers!
  18. Hi every every body i need use kerio server mail and use dyndns.org! my computer not in domaine name! i install it and open port on routeur and firewall! i test telnet is ok! when i want test with outlook express; i have error message0x800ccc0d! i think have prob configuration on my dyndns.org or setting server mail! who can help me please! thank you in advance for your idee
  19. Hello every bady! I want to build a dos bootable CD for McAfee VirusScan Command Line 4 and NTFSPro! NTFSPro is licensed and work right! When i start McAfee with scanPM.EXE the message error coming : DOS/16M error: [40] not enough available extended memory (XMIN) My files : AUTOEXEC.BAT --------------- @ECHO OFF MSCDEX.EXE /D:CDDRIVER /L:X XMSDSK.EXE 102400 R: /t /y CTMOUSE.EXE PATH=A:\;R:\ GOTO %CONFIG% REM -------------------------------------- :MCAFEE MD R:\NTFSPRO COPY X:\NTFSPRO\*.* R:\NTFSPRO MD R:\MCAFEE copy x:\McAfee\*.* R:\MCAFEE rem R:\MCAFEE\ScanPM.exe /adl /all /clean GOTO DOS REM -------------------------------------- REM -------------------------------------- :DOS ECHO X: CD DRIVE ECHO R: RAM DRIVE R: cd NTFSPRO R:\NTFSPRO\NTFSPRO.EXE cd.. REM -------------------------------------- CONFIG.SYS ------------ [MENU] menuitem=DOS, Dos menuitem=MCAFEE, Mcafee Antivirus Command Line 4 [DOS] DEVICE=OAKCDROM.SYS /D:CDDRIVER /L:X [MCAFEE] include=DOS [COMMON] LASTDRIVE=Z --------------------------------------------------- Somebody can help me about the message error : DOS/16M error: [40] not enough available extended memory (XMIN) I don't find the solution! Thank you in advance for your suggestion and solution...
  20. Hello! I want to now where windows vista ultimate write the KB file when is download the the utdate - How can i take the KB for the futur silence install.... thank you very much for your answer!!!
  21. Hello! I try to do an administrative install but have a error message. I do this : i unzip the package with double click one achive Nero-7.5.9.0_fra_no_atb.exe and stop the installation nero. The unzip is on d:\temp\NeroDemo11545 i do the administrattive install : msiexec.exe /a D:\Temp\NeroDemo11545\nero.msi i delete the file *CHM english inside the folder D:\adminnero\[FILELOCATION]Core i delete all the file *.nls and *.txt without nero.txt inside the folder D:\adminnero\[FILELOCATION]Core i copy all file *.MST present inside the unzip package archive inside the D:\adminnero\ I start the installtion with this command line in batch file start /wait msiexec.exe /i "D:\NeroUE7.5.9.0Admin\NERO.MSI" TRANSFORMS="D:\NeroUE7.5.9.0Admin\1036.mst" FAMILYNAME="Nero 7" UILANGUAGEID="1036" STARTPARAM="CallFromExe" DONOTRUNSETUPX="1" MSISOURCEFILE="D:\NeroUE7.5.9.0Admin\NERO.MSI" /Qn 7. i have this error message Note : Folder Install Admin Thank you in adavnce for some help...
  22. Lausanne 04.05.2006 Hello everybody! I have the same problem kronawth but with the Frensh language. I open the msi file with Flexnet AdminStudio, but i don't now where and what i must delete or change value! Some body can help me, Please! Thank you in advance for you time! Mounir Je désire créer un installtion administrative compléte comprenant les mises à jour 7.05 et 7.07 avec la langue française par défaut! Qui as une solution pour le paramétrage de la langue par défaut? Le reste est ok pour moi Merci d'avance pour votre aide! Mounir
  23. Hello, I make an redirection DNS with Dyndns.org with IP Dynamic! - It's work fine. PING hostname and PING -a Hostname OK! In zyxel 650ME on the NAT, i open port 21 and port range 50000 to 50100 for IP LAN PC The firewall XP is OFF (with the remote service) I install the FileZilla Server with setting (Use custom port range : 50000 to 50100) and for passive mode i choose Default option. I make User "User01" with the folder share. I install the FileZilla Client (host) with setting port range 50000 to 50100 for IP LAN PC The test localhost work fine. The test on another PC on LAN work fine. The test with Adress Hostname, i have connexion server ftp but show me two file "ras" and "rom-0". It's no good. never have these files on my PC. I don't understand. Some body can help me please! I try with SmartFTP Client - FTPSERVEUR 0.95 - GuildFTPd FTP Server Daemon but same problem. --------------------------------------------------LOG Client ---------------------------------------------------------------- Trace : FtpControlSocket.cpp(1073): DoClose(0) OpMode=1024 OpState=-1 caller=0x003ad68c Trace : FtpControlSocket.cpp(3906): ResetOperation(4100) OpMode=1024 OpState=-1 caller=0x003ad68c Etat : Déconnecté du serveur Etat : Connexion à techwan2003.dyndns.org ... Trace : FtpControlSocket.cpp(934): OnConnect(0) OpMode=1 OpState=-1 caller=0x003ad68c Etat : Connecté à techwan2003.dyndns.org. Attente du message d'accueil... Trace : FtpControlSocket.cpp(757): OnReceive(0) OpMode=1 OpState=-1 caller=0x003ad68c Réponse : 220 Routeur FTP version 1.0 ready at Thu Dec 29 14:06:23 2005 Commande : USER papa Trace : FtpControlSocket.cpp(757): OnReceive(0) OpMode=1 OpState=0 caller=0x003ad68c Réponse : 331 Enter PASS command Commande : PASS ************* Trace : FtpControlSocket.cpp(757): OnReceive(0) OpMode=1 OpState=3 caller=0x003ad68c Réponse : 230 Logged in Commande : FEAT Trace : FtpControlSocket.cpp(757): OnReceive(0) OpMode=1 OpState=-13 caller=0x003ad68c Réponse : 500 Unknown command 'feat' Commande : SYST Trace : FtpControlSocket.cpp(757): OnReceive(0) OpMode=1 OpState=-14 caller=0x003ad68c Réponse : 215 UNIX Type: L8 Version: 1.0 Etat : Connecté Trace : FtpControlSocket.cpp(3906): ResetOperation(1) OpMode=1 OpState=-14 caller=0x003ad68c Trace : FtpControlSocket.cpp(1146): List(FALSE,0,"","",1) OpMode=0 OpState=-1 caller=0x003ad68c Etat : Récupération de la liste de répertoires... Commande : PWD Trace : FtpControlSocket.cpp(757): OnReceive(0) OpMode=4 OpState=0 caller=0x003ad68c Réponse : 257 "" is current directory Trace : FtpControlSocket.cpp(1146): List(FALSE,0,"","",0) OpMode=4 OpState=0 caller=0x003ad68c Etat : Succès du listage du répertoire Trace : FtpControlSocket.cpp(3906): ResetOperation(1) OpMode=4 OpState=0 caller=0x003ad68c ----------------------------------------------------------------------------------------------------------------------------------------------------- Picture
×
×
  • Create New...