IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

C# Discussion :

Arreter windows en c#


Sujet :

C#

  1. #1
    Membre extrêmement actif Avatar de fally
    Homme Profil pro
    Développeur .Net / BI
    Inscrit en
    Novembre 2007
    Messages
    966
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Bénin

    Informations professionnelles :
    Activité : Développeur .Net / BI

    Informations forums :
    Inscription : Novembre 2007
    Messages : 966
    Points : 1 173
    Points
    1 173
    Par défaut Arreter windows en c#
    Bonjour,
    existe t-il une classe en c# qui permette d'arreter windows, de fermer la session en cours....?
    merci

  2. #2
    Rédacteur/Modérateur


    Homme Profil pro
    Développeur .NET
    Inscrit en
    Février 2004
    Messages
    19 875
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 43
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Février 2004
    Messages : 19 875
    Points : 39 753
    Points
    39 753
    Par défaut
    non, mais tu peux exécuter la commande "shutdown -s"

  3. #3
    Membre extrêmement actif Avatar de fally
    Homme Profil pro
    Développeur .Net / BI
    Inscrit en
    Novembre 2007
    Messages
    966
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Bénin

    Informations professionnelles :
    Activité : Développeur .Net / BI

    Informations forums :
    Inscription : Novembre 2007
    Messages : 966
    Points : 1 173
    Points
    1 173
    Par défaut
    merci j'y ai pensé mais je voulais savoir sil ya une classe c# pour celà.
    merci Tomlev

  4. #4
    Membre éclairé
    Profil pro
    Ingénieur sécurité
    Inscrit en
    Février 2007
    Messages
    574
    Détails du profil
    Informations personnelles :
    Âge : 40
    Localisation : Etats-Unis

    Informations professionnelles :
    Activité : Ingénieur sécurité
    Secteur : Industrie

    Informations forums :
    Inscription : Février 2007
    Messages : 574
    Points : 751
    Points
    751
    Par défaut
    Regarde dans l'API Windows.
    Ici, ça à l'air d'être la bonne fonction.

  5. #5
    Membre extrêmement actif Avatar de fally
    Homme Profil pro
    Développeur .Net / BI
    Inscrit en
    Novembre 2007
    Messages
    966
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Bénin

    Informations professionnelles :
    Activité : Développeur .Net / BI

    Informations forums :
    Inscription : Novembre 2007
    Messages : 966
    Points : 1 173
    Points
    1 173
    Par défaut
    merci bcp mais j'ai beau lire j'y comprends pas grand chose
    un bout de code serait le bienvenu

  6. #6
    Rédacteur/Modérateur


    Homme Profil pro
    Développeur .NET
    Inscrit en
    Février 2004
    Messages
    19 875
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 43
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Février 2004
    Messages : 19 875
    Points : 39 753
    Points
    39 753
    Par défaut
    Il faut utiliser l'interop pour déclarer la fonction dans le code C#, en mappant éventuellement les types natifs vers des types .NET:
    BOOL => bool
    UINT => uint
    DWORD => ulong

    Il est souvent utile de définir des énumérations pour le paramètres qui combinent des bits (flags).


    Code C# : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
     
     
    using System.Runtime.InteropServices;
     
    // Valeur possible pour uFlags
    [Flags]
    enum ExitWindowsFlags : uint
    {
        LogOff = 0,
        PowerOff = 0x00000008,
        Reboot = 0x00000002,
        RestartApps = 0x00000040,
        Shutdown = 0x00000001,
        Force = 0x00000004,
        ForceIfHung = 0x00000010
    }
     
     
    class Toto
    {
     
        // Déclaration de la fonction
        [DllImport("User32.dll")]
        public static extern bool ExitWindowsEx(ExitWindowsFlags uFlags, ulong dwReason);
     
        static void Main(string[] args)
        {
            // Exemple d'utilisation:
            ExitWindowEx(ExitWindowsFlags.Shutdown | ExitWindowsFlags.Force, 0);
        }
     
    }

    Pour les raisons tu peux aussi faire un enum si besoin.

  7. #7
    Membre éclairé
    Profil pro
    Ingénieur sécurité
    Inscrit en
    Février 2007
    Messages
    574
    Détails du profil
    Informations personnelles :
    Âge : 40
    Localisation : Etats-Unis

    Informations professionnelles :
    Activité : Ingénieur sécurité
    Secteur : Industrie

    Informations forums :
    Inscription : Février 2007
    Messages : 574
    Points : 751
    Points
    751
    Par défaut
    Salut,
    Un tuto si l'utilisation des dll native t'intéresse.
    Citation Envoyé par tomlev Voir le message
    UINT => uint
    DWORD => ulong
    DWORD = UINT => uint
    Bon courage.

  8. #8
    Expert confirmé
    Avatar de ced600
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Août 2006
    Messages
    3 364
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 43
    Localisation : France

    Informations professionnelles :
    Activité : Développeur .NET

    Informations forums :
    Inscription : Août 2006
    Messages : 3 364
    Points : 4 061
    Points
    4 061
    Par défaut
    Citation Envoyé par tomlev Voir le message
    non, mais tu peux exécuter la commande "shutdown -s"
    Ceci marche très bien et est bien plus simple, pourquoi faire autrement ?

  9. #9
    Membre éclairé
    Profil pro
    Ingénieur sécurité
    Inscrit en
    Février 2007
    Messages
    574
    Détails du profil
    Informations personnelles :
    Âge : 40
    Localisation : Etats-Unis

    Informations professionnelles :
    Activité : Ingénieur sécurité
    Secteur : Industrie

    Informations forums :
    Inscription : Février 2007
    Messages : 574
    Points : 751
    Points
    751
    Par défaut
    Citation Envoyé par ced600 Voir le message
    pourquoi faire autrement ?
    Pourquoi pas?

  10. #10
    Expert confirmé
    Avatar de ced600
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Août 2006
    Messages
    3 364
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 43
    Localisation : France

    Informations professionnelles :
    Activité : Développeur .NET

    Informations forums :
    Inscription : Août 2006
    Messages : 3 364
    Points : 4 061
    Points
    4 061
    Par défaut
    Citation Envoyé par dahtah Voir le message
    Pourquoi pas?
    oui on peut voir les choses comme cela.
    Ok.

  11. #11
    Rédacteur/Modérateur


    Homme Profil pro
    Développeur .NET
    Inscrit en
    Février 2004
    Messages
    19 875
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 43
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Février 2004
    Messages : 19 875
    Points : 39 753
    Points
    39 753
    Par défaut
    Citation Envoyé par dahtah Voir le message
    Salut,
    Un tuto si l'utilisation des dll native t'intéresse.

    DWORD = UINT => uint
    Bon courage.
    effectivement... j'ai vu "unsigned long" dans la déclaration en C++, mais un long ne fait pas la même taille en C++ et en C#

  12. #12
    Expert éminent
    Avatar de smyley
    Profil pro
    Inscrit en
    Juin 2003
    Messages
    6 270
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2003
    Messages : 6 270
    Points : 8 344
    Points
    8 344
    Par défaut
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
     
    #region Reboot
     
            #region Shutdown argument type definitions
            /// <summary>
            /// Defines the methods of shutting down the system.
            /// </summary>
            [Flags]
            public enum ShutdownMethod : uint
            {
                LogOff = 0x00,
                ShutDown = 0x01,
                Reboot = 0x02,
                Force = 0x04,
                PowerOff = 0x08,
                ForceIfHung = 0x10
            }
     
            /// <summary>
            /// Defines the reason for the shutdown of the system.
            /// </summary>
            [Flags]
            public enum ShutdownReason : uint
            {
                MajorApplication = 0x00040000,
                MajorHardware = 0x00010000,
                MajorLegacyApi = 0x00070000,
                MajorOperatingSystem = 0x00020000,
                MajorOther = 0x00000000,
                MajorPower = 0x00060000,
                MajorSoftware = 0x00030000,
                MajorSystem = 0x00050000,
     
                MinorBlueScreen = 0x0000000F,
                MinorCordUnplugged = 0x0000000b,
                MinorDisk = 0x00000007,
                MinorEnvironment = 0x0000000c,
                MinorHardwareDriver = 0x0000000d,
                MinorHotfix = 0x00000011,
                MinorHung = 0x00000005,
                MinorInstallation = 0x00000002,
                MinorMaintenance = 0x00000001,
                MinorMMC = 0x00000019,
                MinorNetworkConnectivity = 0x00000014,
                MinorNetworkCard = 0x00000009,
                MinorOther = 0x00000000,
                MinorOtherDriver = 0x0000000e,
                MinorPowerSupply = 0x0000000a,
                MinorProcessor = 0x00000008,
                MinorReconfig = 0x00000004,
                MinorSecurity = 0x00000013,
                MinorSecurityFix = 0x00000012,
                MinorSecurityFixUninstall = 0x00000018,
                MinorServicePack = 0x00000010,
                MinorServicePackUninstall = 0x00000016,
                MinorTermSrv = 0x00000020,
                MinorUnstable = 0x00000006,
                MinorUpgrade = 0x00000003,
                MinorWMI = 0x00000015,
     
                FlagUserDefined = 0x40000000,
                FlagPlanned = 0x80000000
            }
            #endregion
     
            #region Win32 Imports
            [DllImport("user32.dll")]
            static extern bool ExitWindowsEx(ShutdownMethod uMethod, ShutdownReason dwReason);
     
            [DllImport("advapi32.dll", SetLastError = true)]
            [return: MarshalAs(UnmanagedType.Bool)]
            static extern bool AdjustTokenPrivileges(IntPtr TokenHandle,
                [MarshalAs(UnmanagedType.Bool)]bool DisableAllPrivileges,
                ref TOKEN_PRIVILEGES NewState,
                UInt32 BufferLength,
                IntPtr PreviousState,
                IntPtr ReturnLength);
     
            [DllImport("advapi32.dll", SetLastError = true)]
            static extern bool OpenProcessToken(IntPtr ProcessHandle,
                UInt32 DesiredAccess, out IntPtr TokenHandle);
     
            [DllImport("advapi32.dll", SetLastError = true, CharSet = CharSet.Auto)]
            static extern bool LookupPrivilegeValue(string lpSystemName, string lpName,
                out LUID lpLuid);
     
            [StructLayout(LayoutKind.Sequential)]
            private struct TOKEN_PRIVILEGES
            {
                public int PrivilegeCount;
                public LUID Luid;
                public int Attributes;
            }
     
            [StructLayout(LayoutKind.Sequential)]
            private struct LUID
            {
                public uint LowPart;
                public uint HighPart;
            }
     
            private const int TOKEN_QUERY = 0x08;
            private const int TOKEN_ADJUST_PRIVILEGES = 0x20;
            private const string SE_SHUTDOWN_NAME = "SeShutdownPrivilege";
            private const int SE_PRIVILEGE_ENABLED = 0x02;
     
            #endregion
     
     
     
            #endregion
    #region reboot utils
            #region Private Methods
            /// <summary>
            /// Adjust the token of the current process to include shutdown privileges.
            /// </summary>
            /// <returns>True on success, false on error.</returns>
            static private bool AdjustShutdownTokenPriveleges()
            {
                bool ret;
     
                IntPtr hProc = IntPtr.Zero;
                IntPtr hToken = IntPtr.Zero;
                LUID luidRestore;
                TOKEN_PRIVILEGES tokenPriviliges;
     
                // get the current current process security token
                hProc = System.Diagnostics.Process.GetCurrentProcess().Handle;
                ret = OpenProcessToken(hProc, TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, out hToken);
                if (!ret)
                    return false;
     
     
                // lookup the LUID for the shutdown privilege
                ret = LookupPrivilegeValue(String.Empty, SE_SHUTDOWN_NAME, out luidRestore);
                if (!ret)
                    return false;
     
                // adjust the privileges of the current process to include the shutdown privilege
                tokenPriviliges.PrivilegeCount = 1;
                tokenPriviliges.Luid = luidRestore;
                tokenPriviliges.Attributes = SE_PRIVILEGE_ENABLED;
     
                TOKEN_PRIVILEGES tokenTemp = new TOKEN_PRIVILEGES();
     
                ret = AdjustTokenPrivileges(hToken, false, ref tokenPriviliges, 0, IntPtr.Zero, IntPtr.Zero);
                if (!ret)
                    return false;
     
                return true;
            }
            #endregion
            #endregion
     
            public virtual bool Reboot(RebootReason reason)
            {
                // Adjust the process privilege
                bool ret = AdjustShutdownTokenPriveleges();
                if (!ret)
                    return false;
     
                // exit windows
                return ExitWindowsEx(ShutdownMethod.Reboot, ParseRebootReason(reason));
            }

  13. #13
    Membre extrêmement actif Avatar de fally
    Homme Profil pro
    Développeur .Net / BI
    Inscrit en
    Novembre 2007
    Messages
    966
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Bénin

    Informations professionnelles :
    Activité : Développeur .Net / BI

    Informations forums :
    Inscription : Novembre 2007
    Messages : 966
    Points : 1 173
    Points
    1 173
    Par défaut
    Merci bcp les gars pour vos reponses!
    j'essaie et je vous en donne des nouvelles

  14. #14
    Membre extrêmement actif Avatar de fally
    Homme Profil pro
    Développeur .Net / BI
    Inscrit en
    Novembre 2007
    Messages
    966
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Bénin

    Informations professionnelles :
    Activité : Développeur .Net / BI

    Informations forums :
    Inscription : Novembre 2007
    Messages : 966
    Points : 1 173
    Points
    1 173
    Par défaut
    Vous avez fait du bon les gars

  15. #15
    Membre actif Avatar de bartoumi
    Profil pro
    Inscrit en
    Février 2005
    Messages
    178
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2005
    Messages : 178
    Points : 205
    Points
    205
    Par défaut
    tu peux y'aller voir MSDN
    en cliquant sur http://msdn2.microsoft.com/en-us/lib...86(VS.85).aspx

  16. #16
    Membre du Club
    Profil pro
    Inscrit en
    Février 2004
    Messages
    59
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2004
    Messages : 59
    Points : 49
    Points
    49
    Par défaut
    Citation Envoyé par ced600 Voir le message
    Ceci marche très bien et est bien plus simple, pourquoi faire autrement ?
    Parce que ca marche pas sur 2000 mais que sur XP

  17. #17
    Rédacteur/Modérateur


    Homme Profil pro
    Développeur .NET
    Inscrit en
    Février 2004
    Messages
    19 875
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 43
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Février 2004
    Messages : 19 875
    Points : 39 753
    Points
    39 753
    Par défaut
    Citation Envoyé par All Jinx Voir le message
    Parce que ca marche pas sur 2000 mais que sur XP
    étonnant ça...
    enfin de toutes façons c'est sans doute plus propre d'appeler l'API ExitWindowsEx, en espérant qu'elle existe sous 2000

  18. #18
    Expert confirmé
    Avatar de ced600
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Août 2006
    Messages
    3 364
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 43
    Localisation : France

    Informations professionnelles :
    Activité : Développeur .NET

    Informations forums :
    Inscription : Août 2006
    Messages : 3 364
    Points : 4 061
    Points
    4 061
    Par défaut
    Citation Envoyé par All Jinx Voir le message
    Parce que ca marche pas sur 2000 mais que sur XP
    En effet mais tu peux downloader l'outil shutdown et l'installer sur le poste qui possède Win2000 et alors cela marchera :
    http://www.petri.co.il/download_free_reskit_tools.htm

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Pb arret windows (encore un !)
    Par superpye dans le forum Windows XP
    Réponses: 3
    Dernier message: 06/10/2007, 09h40
  2. [VB6]Arreter un service windows
    Par bouboussjunior dans le forum VB 6 et antérieur
    Réponses: 1
    Dernier message: 04/10/2004, 17h03
  3. Arret de windows
    Par jean tof dans le forum C++Builder
    Réponses: 2
    Dernier message: 03/04/2004, 19h53
  4. detection de l'arret de windows
    Par moimoimoi3x dans le forum C++Builder
    Réponses: 4
    Dernier message: 02/03/2004, 06h33
  5. Detection arret de windows
    Par philippe30 dans le forum API, COM et SDKs
    Réponses: 4
    Dernier message: 21/09/2002, 18h41

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo