Jump to content

ronmanp

Member
  • Posts

    54
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Canada

Posts posted by ronmanp

  1. Hi,

    When I receive attachment and click to save it on my drive it removes the filetype. For example, when saving test.doc the file gets renamed to test and I can't open the file...

    I know I could just type the extension but it's pretty annoying to always do that.

    I can't seem to find a setting that could help me in outlook or vista's control panel.

    Any ideas?

    Thanks!

  2. Hi,

    I slipstreamed SP3 + all hotfixes from the dynamic list but after installation Microsoft update asks for the Root Certificate and KB898461

    For the root certificate I dont understand, because its in the HF folder ...

    My os's language is Portuguese- Portugal

    Except that everything is perfect !

    Id like to know why this happens to me

  3. nevermind I found it :)

    exec 3<> ~/sdelrc
    read langue <&3
    exec 3>&-

    this will read the first line of sdelrc and create a variable named $langue with it !

    ps: I have another question !

    Is it possible to use a case inside a case ? Because Im getting a error with this ...

    echo "Quel langue? / What language? (F)rançais / (E)nglish?:"
    read language
    case "$language" in
    "f"|"F" )
    echo f > ~/sdelrc
    echo "Écraser le fichier SpecFICH (O)ui , (N)on?:"
    read confirmation
    case $confirmation in
    "o"|"O" )
    mv -f $1 ~/corb.dir
    ;;
    "n"|"N" )
    exit 0
    ;;
    esac
    "a"|"A" )
    echo a > ~/sdelrc
    echo "Overwrite file FILESpec (Y)es , (N)o?:"
    read confirmation
    case $confirmation in
    "o"|"O" )
    mv $1 ~/corb.dir
    ;;
    esac
    esac

  4. thanks, my graphic card is working fine I though that updating it could make it work better :)... I a bit scared of overclocking it coz I dont have much experience with OC.

    anyway ill leave it the way it is !

    thanks,

  5. Hi,

    I have a Sapphire x1900xtx and I was wondering if there was a official bios for it. I can't find it anywhere, im not looking to overclock it, i just want to know if I can update the bios (with the official one) to make it work better.

    Thanks :)

  6. I think I fixed it by moving my deplacer label to the end ..

    here my final version (sent to the teacher)

    rem sdel.cmd
    rem par : My name
    rem date : 23 octobre 2007
    rem but: Automatiser des tâches dans un environnement Windows
    rem ========================================================================
    if NOT "%2" == "" GOTO langue
    if "%1" == "" GOTO langue
    if "%1" == "/?" GOTO langue
    if NOT EXIST "%1" GOTO erreur
    if EXIST c:\corb.dir\%~n1 choice /c:oyn /t:n,05 Écraser le fichier SpecFICH (O)ui ,(N)on?: Overwrite file FileSPEC (Y)es or (N)o
    if errorlevel == 3 goto fin
    if errorlevel == 2 goto deplacer
    if errorlevel == 1 goto deplacer
    if NOT EXIST c:\corb.dir\nul mkdir c:\corb.dir\
    GOTO deplacer
    :langue
    echo Quel langue préférez-vous? / What language do you prefer (F)rançais ou / or (E)nglish?:
    choice /c:fe
    if errorlevel == 2 GOTO anglais
    if errorlevel == 1 GOTO francais
    :francais
    echo SYNTAXE : sdel [SPECFICH][/?]
    echo SPECFICH : Représente une spécification de fichier selon la syntaxe
    echo suivante : [lecteur :][chemin]nomfich[.ext]
    echo Exemple 1 : sdel /? (affiche cet écran d’aide)
    echo Exemple 2 : sdel toto (Déplace le fichier toto dans c:\corb.dir)
    echo Appuyez sur une touche pour quitter….
    pause>nul
    goto fin
    :anglais
    echo SYNTAX : sdel [FILESpec][/?]
    echo FILESpec : Represents a file specification using the following syntax:
    echo [drive :][path]filename[.ext]
    echo Example 1 : sdel /? (Shows this help screen)
    echo Example 2 : sdel toto (Moves toto to the recycle bin c:\corb.dir)
    echo Hit any key to quit…
    pause>nul
    goto fin
    :erreur
    echo Fichier SpecFICH introuvable – File FileSPEC not found
    goto fin
    :deplacer
    move /Y "%1" c:\corb.dir\%~n1
    :fin

×
×
  • Create New...