topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Friday May 10, 2024, 4:42 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: [1] 2 3 4 5 6 ... 10next
1
Hey there,

I've been using 2.1.0 beta 67 today and I've run into a kinda new issue.

With previous versions it already happened from time to time that, while launching a command with a button, I'd get the attached error message. It was not a very common occurrence and the command ran anyway with no other issue, so I didn't mind much.
What's new with this latest beta is that, after running into that error, now I can't seem to interact with the Variable field any more. I can open the drop-down list (which appears to be empty while it shouldn't be) but can't get the blinking cursor to appear inside the field itself, or select the current value by double clicking it, or even replace it by selecting a favorite… seems the only way out is to exit CRAP and restart it.
-ConstanceJill (Today at 11:43 AM)

Same command each time or different? If same might have to investigate that command myself if possible to debug.
2
Hello all,

Background:
I work for a university, and we've onboarded our devices to Intune.  We're a hybrid organization, and some of our onboarded devices are ADDS joined (desktops, servers), and some are not (laptops connecting via wireless).  Our laptops were not licensed at the time of onboarding, and we now have a need to license them.  I use Active Directory Based Activation, and it requires the devices to be domain joined, which the laptops are not. So I'd like to do this via Intunes, and I imagine I may get some replies stating I'm trying to lower the river rather than raise the brigde.  But if I could use a custom script in Intune I'd like to give it a shot, as it'll be good experience, which I can certainly use.  But I won't deride any suggestions of how to do it differently, on the contrary I always welcome good advice. I've made a good bit of progress but I still have a couple items to get straight. We need to assign the unlicensed (Windows) laptops with Windows 11 MAK licenses, and I believe a custom script in Intune will do the job. To be up front, I have around 12 years in Microsoft 365 and 5 years in Azure, but I'm a newbie in Intune.

Custom script:
I've begun building the custom script in Intune, and I did find one site where someone else was doing just this.  The Remediation script should be straightforward, with not much more than using slmgr to apply a MAK license to unlicensed devices. It's the Detection script that I've been working on. I used some of the script I got from the one site I found, and I removed some of his code and added the code that points the output to a file. I logged into one on prem test device and ran the script locally. I haven't attempted this in the portal, as I'm not inclined to punch buttons without thorough testing. Just for grins I pointed the output to c:\temp\123.log on that device, and I tested it using both MAK and KMS successfully, with the logfile showing the correct values I expected to see. This is what I have for the Detection script so far:

{$_.PartialProductKey}
if ($license.description -like "*MAK*") {
    Add-Content -Path c:\temp\123.log -Value "MAK license found"
    Write-Output "MAK license found"
 exit 1
} else {   
    Add-Content -Path c:\temp\123.log -Value "MAK license not found"
    Write-Output "MAK license not found"
 exit 0
}

What I'd like to see would be list of computer names along with their licensing status.

Questions:
First, am I looney for trying to do this in this manner?  (lol)  I wonder...! But the one site where an admin was doing this looked like a slick way to do it. He was removing a KMS key and replacing it with a MAK.
Second, how would I generate a list of the names of any laptops with no Windows activation? Is this even needed?
I was thinking I would then use this list to apply a scope tag to these unlicensed laptops. But the custom script requires both a Detection and a Remediation script, and the Remediation script would apply a license, unless I did something else with it.  In the example I found on the one site, he used slmgr //b /ipk <product key>. I'm not sure what the //b does, so any assistance there is appreciated.

So am I on the right track here? Is a list of unlicensed computers necessary, or would I first apply the scope tag to the unlicensed laptops, and configure the Remediation script to appy the MAK licenses? It would be good to have an output of devices that were activated, or to see if it worked at all.

Thanks in advance for any replies or suggestions.
3
Hey there,

I've been using 2.1.0 beta 67 today and I've run into a kinda new issue.

With previous versions it already happened from time to time that, while launching a command with a button, I'd get the attached error message. It was not a very common occurrence and the command ran anyway with no other issue, so I didn't mind much.
What's new with this latest beta is that, after running into that error, now I can't seem to interact with the Variable field any more. I can open the drop-down list (which appears to be empty while it shouldn't be) but can't get the blinking cursor to appear inside the field itself, or select the current value by double clicking it, or even replace it by selecting a favorite… seems the only way out is to exit CRAP and restart it.
4
DC Gamer Club / Re: Latest Game Giveaway
« Last post by Deozaan on Today at 12:24 AM »
If you have a subscription to Amazon Prime then the following games can all be redeemed on GOG through Amazon Prime Gaming:


https://gaming.amazon.com/
5
2.1.0 build 67 BETA BUILD is on the beta page for download.

What's New/Modifications
Each layout file now has a layout configuration section where each option only applies to that layout file.
When loading a large width/height image file for the icon it should now ask if you want to save a copy at a smaller size to use.
Added the ability to shorten the title bar down a little.
More bug fixes and optimizations.
Further theme fixes.

I also ended up adding one last feature to this beta...

Added not one but two new prefix/suffix macros as follows:
<login:user> and <login:pass> which will pop a dialog asking for them right before the launch happens.
Please note that the value will not show in the launch confirm window for more security.

As always let me know if bugs are found no matter how BIG or small of a bug it may be.
Also let me know your thoughts/feedback on this program/build in general even if no bugs are found...
6
I'm wondering if having it hide as long as no button uses the variable may be confusing for new users that didn't read about the feature first, especially if it's hidden when they start a new layout (which by default would be empty), or if they just start by making one such button and then the field disappears.

Maybe having it just be a toggleable option for each layout would keep it more simple (also when it comes to maintaining the code, even though I guess that's not for me to worry about).
-ConstanceJill (May 07, 2024, 02:31 AM)

Here is what I did currently for a toggleable option. I changed up the layout management dropdown a tiny bit to accommodate for a layout config section by moving switch layouts into a sub menu of it. Then I added a variable bar preference of "On, Off, Auto" with "On" being the default setting to the new layout config submenu in the layout management dropdown. Since the layout listing was dynamic menu items it was easier to have those in a submenu. Then I switched the other portion of layout management to be created at design time which the layouts config needed to already be in place. Also the variable bar options also have a tooltip explaining each if hovered. This should allow for expanding with more layout specific settings should the need/want arise.
7
I'm wondering if having it hide as long as no button uses the variable may be confusing for new users that didn't read about the feature first, especially if it's hidden when they start a new layout (which by default would be empty), or if they just start by making one such button and then the field disappears.

Maybe having it just be a toggleable option for each layout would keep it more simple (also when it comes to maintaining the code, even though I guess that's not for me to worry about).
8
Living Room / Re: Do good mice still exist? Looking for recommendations.
« Last post by mouse53 on May 06, 2024, 05:57 PM »
I have seen where Elecom has both large and small sizes.  I have the Huge and it is a stretch for me.  Thank you for the link to the trackball site ,  that is a wonderful place to visit.  I have used trackballs for years after elbow surgery.
9
Living Room / Re: Do good mice still exist? Looking for recommendations.
« Last post by rjbull on May 06, 2024, 03:49 PM »
trackball mice

If you like trackballs, take a look at Trackball Mouse .org reviews (if you haven't already).  One caveat; amongst others, he likes the Kensington Expert Mouse.  It's a big device.  You need quite big hands to be really comfortable with it.
10
Well I'm sure yet if that's a good idea, but I've been thinking, perhaps it would be nice to have a layout-related option that would allow to hide the Variable field and Favorites menu, in case someone intends to use that layout specifically for shortcut type links that do not require any input?
-ConstanceJill (May 02, 2024, 10:17 AM)

I have implemented at the moment in my local copy for it to check to see if any button that is enabled has the ignore variable unchecked and if the layout has all ignore variables for each then it will hide the top bar else display it...but let me know if you want it a different way or not at all. I am cool with whichever way you would prefer on this.
Pages: [1] 2 3 4 5 6 ... 10next