For questions relating to user groups, in a security or permissions context, independent of platform.
Questions tagged [usergroups]
343 questions
1
vote
0 answers
Django group permissions like linux file system permissions
Basically I would like to have a permission system like Linux file system. I want to classify the permissions whether the user is in the same group as the owner (creator) of the object.
Example scenario:
User can change objects created by someone in…

yam
- 1,383
- 3
- 15
- 34
1
vote
0 answers
"Class doesn't support automation." JavaScript error only without Admin permissions
I have a WebBrowser control on a WinForms desktop application, browsing an ASP.NET web application containing a short JavaScript function. For the vast majority of users, this happens as it should.
However, on certain machines, users experienced a…

The Furious Bear
- 592
- 4
- 16
- 31
1
vote
3 answers
Hybris Readonly UserGroup
I need to set up a user group which should have access to everything like the admingroup but with readonly rightsg. I know that there is a way to set the access rights for single types, but is there any method which sets the readonly right to all?…

Lukas Frey
- 85
- 1
- 8
1
vote
1 answer
Allow certain group and admin to view part of HTML in Django
I'm trying to make it so that a certain part of the html is only viewable if a user belongs to a certain group or is an admin. I managed to find a way to make it so that only a certain group can see it:
base.html
{% for group in user.groups.all %}
…

Jerry Bi
- 321
- 6
- 24
1
vote
1 answer
Execute script without reading permissions
I want to allow users to execute a bash script that contains sensitive data. Thus, I don't want them to have reading permissions. A 'direct' solution seems to be impossible, but I may have found a workaround in the expect man page:
Create the…

MrTomRod
- 345
- 2
- 16
1
vote
1 answer
Creating shortcut in user Start menu from elevated Inno Setup installer
During its lifetime, MyApp creates extra shortcuts to Userappdata,
MyAppGroupName\MyAppShortcut#2
MyAppGroupName\MyAppShortcut#3
...
yet as Inno Setup requires elevation because of registry Association edits the original {Group} item is inserted in…

Laurie Stearn
- 959
- 1
- 13
- 34
1
vote
0 answers
User Administration windows 7,10
I have account within Administators group
The code Powershell ( and .NET as well )
(new-object System.Security.Principal.WindowsPrincipal([System.Security.Principal.WindowsIdentity]::GetCurrent())).IsInRole("Administrators")
returns false
I…

Moisey Oysgelt
- 51
- 4
1
vote
1 answer
Odoo 8 : Issue with new security groups
I've created a new group to hide a menu-item, so I did this :
courier.xml :

BKF
- 1,298
- 4
- 16
- 35
1
vote
1 answer
WiX error LGHT0094: Unresolved reference to symbol Group:Users in section Fragment
I am trying to add a new user in wix using the following component
…

Gianluca Ghettini
- 11,129
- 19
- 93
- 159
1
vote
1 answer
Get name of all Office 365 groups
I am attempting to write my first PS script and would like to check if a Name of an Office 365 group already exists in the system. So I set the vars and want to check if GN matches a group name already in the system, how can I access all the names…

Jamie_lee
- 331
- 4
- 13
1
vote
1 answer
Steps to adding Group permissions to a File in box
I'm using Box.com with both JWT and OAuth and I can't seem to figure out how to add group level permissions to files or folders. Can anyone tell me where I go to get at that? I've looked in the UI seemingly every where and I can't seem to find the…

Nicholas DiPiazza
- 10,029
- 11
- 83
- 152
1
vote
1 answer
Usergroup for hadoop on windows
Is there any way to add user to hdfs group (any) on Windows platform? I can't assign Windows user itself to group because I have no admin privileges on the machine.
The more wide problem is when I try to run mapred task on hadoop, it sleeps and…

Aguinore
- 91
- 11
1
vote
0 answers
Userena group based categorization on signup/registration
I would like to separate users into two different groups, sellers or buyers, at signup. I'm using django-userena and for the authentication and registration of users. I'm thinking of using a clone of the same signup view except with a different url…

Jatto_abdul
- 109
- 2
- 11
1
vote
1 answer
Determine which group(s) the current user account belongs to?
For a small utility app I'm writing at work, I have the following code to determine if the current user account is a local or domain administrator:
WCHAR wszUser[UNLEN];
GetEnvironmentVariableW(L"username", wszUser, UNLEN);
#ifndef _DEBUG
…

Govind Parmar
- 20,656
- 7
- 53
- 85
1
vote
1 answer
Linux doesn't show added group
When I try to make my 'devexe' group it says it exists but when I try to see it via this command :
$ cut -d: -f1 /etc/passwd
it's not in the list.

Aneeka Snyder
- 29
- 7