May 12, 2021
04:47 PM
Ah, much easier. I was looking in the totally wrong place. Thank you!
... View more
May 12, 2021
12:45 PM
No way to do this then?
... View more
May 11, 2021
01:59 PM
We need to allow customers to rent our PC-based software for one month terms and not worry about creating special entitlements for each customer or even necessarily tracking the customer. I'd like to come up with some kind of License Model that lets me do that. But I'd like to be able to do it without completely disabling the FNO "Account Check" policy. Is this possible? "Account Check" tracks entitlement customer accounts vs the machines that use them. . FNO will not allow you to activate two activation IDs from two different customers on the same machine It seems that no matter how I create an entitlement even one for a trial use, I have to associate it with some customer account. Yes? So once a customer uses that entitlement, their computer gets associated with that account. If they come back later and want to buy the software (and we give them a real customer account), we must do extra work to "disassociate" their PC with that trial account so they can activate the software without tripping over FNO's "account check" Or we have to disable "account check" altogether on FNO in this setting: System >> Configure >> FlexNet Operations >> Embedded Device Settings >> Skip Account Check Is there some other, better options I am missing here. How should I go about supporting a one-month rental model like this? So that if a customer uses one of these one-month trials and then later on
... View more
May 11, 2021
09:52 AM
Excellent, thank you. No we are not using the ESD at this time.
... View more
May 04, 2021
12:52 PM
Thank you for the explanation. I don't have to t would be useful if there were some easy way to at least not show all of those Flexera users by default. Maybe some kind of "Hidden" status? 99% of the time that I go to that display, I just want to see the users in my organization. Some of our people only show up on the second page. I shouldn't have to filter out two pages of Flexera people every time just to see the one person I do. I hope that someone will take this as a product suggestion -Joe
... View more
May 04, 2021
10:49 AM
This is a bit of a "best practice" question. I am creating an entitlement which is going through a new channel partner. I have full information about the partner but only basic information about the end customer. I am concerned about the flexibility of what I can change after the entitlement is deployed and, perhaps activated. Somewhere down the line people in my company might want to track this stuff. But right now, we don't care. When I create the entitlement, if I just specify the partner account, FNO automatically adds UNKNOWN_ORG_UNIT to the entitlement as soon as I add a line item. But after the customer activates, if I want to change the end customer from UNKNOWN_ORG_UNIT to a real account, can I do that after the activation? Or should I go to the trouble of creating a simple customer account right now with the limited information that I have and fill things in later? I am worried that FNO prevent me from changing things I need to change. This is a case of knowing only a little about what I can do but having no idea what I should do so as to keep my options open in the future
... View more
Apr 27, 2021
11:59 AM
Our FNO server producer account for our company, MY_ORG, came with a bunch of predefined users with Flexera email addresses. I understand that this is for if we need technical support later on. Is that right? Still it's a whole lot of users and it really clutters up the page, especially when I'm trying to demo how to use the server to other people in my company. I figured I would delete them and then if necessary I could add a Flexera user later if I needed tech support so I tried to delete one of them. Unfortunately when I did so, selected a user and clicked delete, I got this error: [Incident# 4613-7014277] Logged in user does not have permission to access this information. I have full privileges on our server. So what do I do? Am I not allowed to delete all these accounts? Is it a bad idea? More to the point, do I really need ALL of those people as a member of MYORG?
... View more
Apr 20, 2021
12:00 PM
I know that I can look at the Request History on my FNO server but I'm trying to find all the histories related to a specific Activation ID. Is there a way to do this? The "Request History" page only seems to let me set the "Max Request Time" and "Max Request ID" I want to see the other information about the activation (that was sent along with it) in order to identify who currently has it activated.
... View more
Mar 03, 2021
05:22 PM
I finally realized that I just needed an uncounted license model. I just did not understand correctly what "Uncounted" meant in licensing terms.
... View more
Mar 03, 2021
03:47 PM
I am going to answer my own question because I think I completely misunderstood what "Counted" meant in licensing terms. I thought that "Counted" was the attribute of a license model that enabled you to specify a certain number of licenses for each entitlement -- and that without it -- with an "uncounted" license model -- a customer could just activate the entitlement as many times as they wanted. I think I now see that "uncounted" is exactly the behavior I was looking for and I can still specify a count to entitlements even with it.
... View more
Mar 03, 2021
01:14 PM
We've switched from using manually generated nodelocked license files (FNE) to using FlexNet Operations and having client PC software manually connect to the FNO server to perform one-time activation of licenses instead. Unfortunately there is a difference in behavior for the activated licenses from the old node-locked files that makes me think I've chosen the wrong FNO License Model. I hope someone can tell me what license model I can choose to accomplish what I want Suppose our client's PC has one license for feature A. The old behavior (when that license was in a binary license file) was that the code could acquire that single license as (via FNE's FlcAcquireLicense function)many times as needed without returning it and it would all count as just one checkout. Each call to FlcAquireLicense worked and it all counted as 1. The new behavior (with activated licenses in trusted storage on the local PC) is that the first call to FlcAcquireLicense works but the next one fails with the error message "Insufficient count for the requested feature" I must call FlcReturnLicense first. I created a license model that was permanent and counted because we issue our software licenses for a given number of customer seats. Is there some other model I should choose that would give the old behavior? Here is the FNO license model that I use And aside from my license models, I see the following pre-populated ones available. Will one of these give me what I want? Retail Activation Named User Licensing Concurrent User Licensing Embedded Counted Embedded Uncounted
... View more
Mar 03, 2021
09:28 AM
Here is a the license model I'm using from the server
... View more
Mar 03, 2021
09:24 AM
For the longest time, we've been using FNE with simple, node-locked, file-based licensing. Simple license files generated via licenseFileUtil.bat. This has always allowed the user to acquire the same feature multiple times -- without returning any any of them -- with no problems. Like this: FlcLicenseRef ref1 = nullptr;
const auto result1 = FlcAcquireLicense(m_ref, &ref1, "Core", "1.0", m_err);
FlcLicenseRef ref2 = nullptr;
const auto result2 = FlcAcquireLicense(m_ref, &ref2, "Core", "1.0", m_err); But now I'm using trusted-storage "acquired" licenses set up with on a FlexNet Operations server and activated ourselves via the API. These new licenses do not permit this behavior. The symptom is that the second call to FlcAcquireLicense fails and the error is: "insufficient count for the requested feature". So clearly I've somehow set up my entitlements wrong on the server. I'm using a "permanent, counted" license model. Do I have that wrong? Should I have used uncounted? I don't know if my issue is a missing/invalid argument on the FlexNet Embedded side or a configuration issue on the FlexNet Operations side when creating my products/entitlements. Any guidance would be appreciate
... View more
Mar 02, 2021
06:15 PM
I created some entitlements for my own company's account-- the producer account "MYORG". Unfortunately I associated the entitlements with another company account. None of them are used and I want to transfer them to my company but the wizard will not let me. If I type in the Account ID "MYORG" it tells me there is no such account. If I do a search it only wants to let me choose from customer accounts -- not producer account. The dialog that pops up does not even have a tag for producer accounts. How do I accomplish this?
... View more
Mar 02, 2021
05:48 PM
Excellent thank you!
... View more
Latest posts by jmoleary
Subject | Views | Posted |
---|---|---|
104 | Jan 23, 2023 02:19 PM | |
199 | Jan 10, 2023 01:52 PM | |
198 | Dec 08, 2022 07:00 AM | |
230 | Dec 07, 2022 03:10 PM | |
165 | Nov 29, 2022 10:06 AM | |
218 | Oct 26, 2022 10:28 AM | |
245 | Oct 24, 2022 06:36 PM | |
271 | Aug 16, 2022 01:22 PM | |
343 | Aug 11, 2022 12:32 PM | |
359 | Aug 10, 2022 02:45 PM |
Activity Feed
- Got a Kudo for Re: How may I find records of activations using a particular activation ID?. Jan 23, 2023 10:22 PM
- Posted Re: How may I find records of activations using a particular activation ID? on FlexNet Operations Forum. Jan 23, 2023 02:19 PM
- Posted How may I find records of activations using a particular activation ID? on FlexNet Operations Forum. Jan 10, 2023 01:52 PM
- Posted Re: Can Product Upgrade Job emails be re-sent? on FlexNet Operations Forum. Dec 08, 2022 07:00 AM
- Posted Can Product Upgrade Job emails be re-sent? on FlexNet Operations Forum. Dec 07, 2022 03:10 PM
- Posted Unable to log on to UAT Server on FlexNet Operations Forum. Nov 29, 2022 10:06 AM
- Posted Re: How do I set the timeout period for offline activation request responses? on FlexNet Operations Forum. Oct 26, 2022 10:28 AM
- Posted How do I set the timeout period for offline activation request responses? on FlexNet Operations Forum. Oct 24, 2022 06:36 PM
- Posted How does the Version of a product affect its licensing? on FlexNet Operations Forum. Aug 16, 2022 01:22 PM
- Posted Re: What does it mean to "Allow Upsells" on a Maintenance? on FlexNet Operations Forum. Aug 11, 2022 12:32 PM
- Posted What does it mean to "Allow Upsells" on a Maintenance? on FlexNet Operations Forum. Aug 10, 2022 02:45 PM
- Posted Trouble understanding FNO Maintenances on FlexNet Operations Forum. Jul 28, 2022 08:17 AM
- Posted Re: Device records do not match # of Activations on FlexNet Operations Forum. Nov 05, 2021 01:04 PM
- Posted Device records do not match # of Activations on FlexNet Operations Forum. Nov 05, 2021 12:35 PM
- Posted "Returning a device is an irreversible action". What does that mean? on FlexNet Operations Forum. May 19, 2021 09:11 AM
- Posted Re: How can I search my request history for a specific activation ID? on FlexNet Operations Forum. May 12, 2021 04:48 PM
- Posted Re: How can I search my request history for a specific activation ID? on FlexNet Operations Forum. May 12, 2021 04:47 PM
- Posted Re: How can I search my request history for a specific activation ID? on FlexNet Operations Forum. May 12, 2021 12:45 PM
- Posted How to support a rental model in FNO. on FlexNet Operations Forum. May 11, 2021 01:59 PM
- Posted Re: Should I leave partner customer as UNKNOWN_ORG_UNIT or create an end user account now? on FlexNet Operations Forum. May 11, 2021 09:52 AM