Posts

Showing posts with the label permissions

Trying to add rating for a windows file and I am getting “You will need to provide administrator permission to apply properties to this file”

Image
Clash Royale CLAN TAG #URR8PPP Trying to add rating for a windows file and I am getting “You will need to provide administrator permission to apply properties to this file” This is on a Windows 10 computer. I am the owner of the file. My account is an Admin account. I can rename the file with no problems Update: after some investigations I realized the is happening only for PDFs This seems to have something to do with the file handler What rating? How are you adding it? – SILENT 9 hours ago in File Explorer enable the details pane (Under the View menu) then click on the file and you will see tags, category content rating (this is a doc file) – MiniMe 9 hours ago 1...

Best way to store permissions for the user account?

Image
Clash Royale CLAN TAG #URR8PPP Best way to store permissions for the user account? I have permission records that are tied to each account in my application. Each account can have one or multiple permission records based on account type. Here is example: <cfquery name="qryUserPerm" datasource="#Application.dsn#"> SELECT AccessType, AccessLevel, State, City, Building FROM Permissions WHERE AccountID = <cfqueryparam cfsqltype="cf_sql_integer" value="#trim(session.AccountID)#"> </cfquery> Query above will produce data like this for one of the accounts: RecID AccountID AccessType AccessLevel State City Building 70 285A637D82B9 F B NY New York 8010 71 285A637D82B9 F B NY New York 5412 73 285A637D82B9 F B NY New York 6103 74 285A637D82B9 F B NY New York 3106 As you can see above this a...