Skip to content

Commit

Permalink
change tags
Browse files Browse the repository at this point in the history
  • Loading branch information
Lea9250 committed Jun 3, 2022
1 parent e7d567f commit 87525e4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions APACHE/Map.pm
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ fields => {
PASSWORDEXPIRES => {},
STATUS => {},
SID => {},
USERCONNEXION => {},
NUMBERREMOTECONNEXION => {},
USERCONNECTION => {},
NUMBERREMOTECONNECTION => {},
IPREMOTE => {},
}

Expand Down
4 changes: 2 additions & 2 deletions agent/winusers.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ foreach ($user in $users) {
$xml += "<USERMAYCHANGEPWD>"+ $user.UserMayChangePassword +"</USERMAYCHANGEPWD>`n"
$xml += "<PASSWORDEXPIRES>"+ $user.PasswordExpires +"</PASSWORDEXPIRES>`n"
$xml += "<SID>"+ $user.SID +"</SID>`n"
$xml += "<USERCONNEXION>"+ $numberConnexion +"</USERCONNEXION>`n"
$xml += "<NUMBERREMOTECONNEXION>"+ $numberRemoteConnexion +"</NUMBERREMOTECONNEXION>`n"
$xml += "<USERCONNECTION>"+ $numberConnexion +"</USERCONNECTION>`n"
$xml += "<NUMBERREMOTECONNECTION>"+ $numberRemoteConnexion +"</NUMBERREMOTECONNECTION>`n"
$xml += "<IPREMOTE>"+ $ipRemote +"</IPREMOTE>`n"
$xml += "</WINUSERS>`n"

Expand Down
4 changes: 2 additions & 2 deletions cd_winusers/cd_winusers.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
'Change Password' => 'usermaychangepwd',
'Password expires' => 'passwordexpires',
'Sid' => 'sid',
'User Connexion' => 'userconnexion',
'Number Remote Connexion' => 'numberremoteconnexion',
'User Connection' => 'userconnection',
'Number Remote Connection' => 'numberremoteconnection',
'Ip Remote' => 'ipremote'
);
$list_col_cant_del=$list_fields;
Expand Down
4 changes: 2 additions & 2 deletions install.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ function extension_install_winusers()
`USERMAYCHANGEPWD` VARCHAR(255) DEFAULT NULL,
`PASSWORDEXPIRES` VARCHAR(255) DEFAULT NULL,
`SID` VARCHAR(255) DEFAULT NULL,
`USERCONNEXION` VARCHAR(255) DEFAULT NULL,
`NUMBERREMOTECONNEXION` VARCHAR(255) DEFAULT NULL,
`USERCONNECTION` VARCHAR(255) DEFAULT NULL,
`NUMBERREMOTECONNECTION` VARCHAR(255) DEFAULT NULL,
`IPREMOTE` VARCHAR(255) DEFAULT NULL,
PRIMARY KEY (`ID`,`HARDWARE_ID`)
) ENGINE=InnoDB ;");
Expand Down

0 comments on commit 87525e4

Please sign in to comment.