ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. gjacobse
    3. Topics
    • Profile
    • Following 2
    • Followers 5
    • Topics 711
    • Posts 9,609
    • Groups 1

    Topics

    • gjacobseG

      ADUC: Use Powershell to Export list of User/Groups

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion aduc server 2012 active directory activedirectory powershell users export report
      2
      0 Votes
      2 Posts
      999 Views
      DustinB3403D

      I got you

      # This script will export all users of the specified domain, and their group memberships to a CSV file. The usefulness of this tool is expressed when # setting up new hire employees or reviewing domain membership permissions. # It's not advisable to store the user credentials required to run this script as they can be decrypted. This script is not designed to save these credentials but could be modified to do so. # Use of this script implies that you understand what it does, and will do to with regards to your Active Directory installation members and group memberships. # As designed there are no changes made to your installation, the script simply generates a report of members, and their group memberships. # Any changes to this script are the responsibility of the person/organization which made said changes. # We cannot be held responsible for your misuse or misunderstanding of this script as it was designed. # # # # # Imports Active Directory information Import-Module Activedirectory $credentials = Get-Credential # Prompts for user credentials default user is “ ”, enter an administrator account in the form of “domain-name\administrator-account” Get-ADUser -Credential $credentials -Filter * -Properties DisplayName,EmailAddress,memberof,DistinguishedName,Enabled | % { New-Object PSObject -Property @{ UserName = $_.DisplayName EmailAddress = $_.EmailAddress DistinguishedName = $_.DistinguishedName Enabled = $_.Enabled # Deliminates the document for easy copy and paste using ";" as the delimiter. Incredibly useful for Copy & Paste of group memberships to new hire employees. Groups = ($_.memberof | Get-ADGroup | Select -ExpandProperty Name) -join ";" } # The export path is variable change to desired location on domain controller or end user computer. } | Select UserName,EmailAddress,@{l='OU';e={$_.DistinguishedName.split(',')[1].split('=')[1]}},Groups,Enabled | Sort-Object Username | Export-Csv $ENV:UserProfile\Documents\User-Permissions.csv –NTI #Function Get-SaveFile($initialDirectory) #{ #[System.Reflection.Assembly]::LoadWithPartialName("System.windows.forms") | #Out-Null # #$SaveFileDialog = New-Object System.Windows.Forms.SaveFileDialog #$SaveFileDialog.initialDirectory = $initialDirectory #$SaveFileDialog.filter = "All files (*.*)| *.*" #$SaveFileDialog.ShowDialog() | Out-Null #$SaveFileDialog.filename #} # # # open dialog box to select the .nessuss file. #$InputFile = Get-OpenFile #$OutputFile = Get-SaveFile # # #$Contents = [io.file]::ReadAllText($inputfile) #$Contents = [io.file]::ReadAllText('C:\tools\wd\nessus\data\data.xml') #$Global:OutFile = [System.IO.StreamWriter] "c:\tools\wd\nessus\outfile.csv" # ##$InputFile #$OutputFile #
    • gjacobseG

      Google Sites - The Good The bad

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      7
      1 Votes
      7 Posts
      491 Views
      gjacobseG

      Found another annoyance with Google Sites and the attached email..

      Send mail limits.... Ugh.. Like I now have to send more than two emails to get through my notification list. That is unacceptable. Yes, I know I could use something like MailChimp or similar.. but I don't have the free time to put into that right now. And if I move off of G-Sites to hosted.. would that be an issue any longer?
      sigh

      eta

      I should add - that is PER DAY... so... Ugh... two days to cover the list.

    • gjacobseG

      WiFi Heatmapping on Linux

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion linux fedora ubuntu linux mint wifi wireless network networking heat mapping heat map heatmapper
      8
      2 Votes
      8 Posts
      11k Views
      travisdh1T

      I've always used WiFi Analyizer on a phone/tablet if I needed to survey a location. That said, a thread on linuxquestions.com led me to: https://alternativeto.net/software/inssider/?platform=linux#. Looks like some options at least, don't really know if they're decent.

    • gjacobseG

      Windows 10 - 1803 Stalls

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      12
      2 Votes
      12 Posts
      820 Views
      JaredBuschJ

      This is all you @gjacobse

    • gjacobseG

      Thread Icon request

      Watching Ignoring Scheduled Pinned Locked Moved Water Closet
      3
      5 Votes
      3 Posts
      549 Views
      JaredBuschJ

      What is a thread icon ?

    • gjacobseG

      PS: Find File path Length

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion powershell server 2012 server filepath file path file system exceeds 260 limit
      1
      5 Votes
      1 Posts
      746 Views
      No one has replied
    • gjacobseG

      Deleting a GPO

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion gpo group policy printer printers printer deployment
      15
      0 Votes
      15 Posts
      2k Views
      DustinB3403D

      @scottalanmiller said in Deleting a GPO:

      @rojoloco said in Deleting a GPO:

      @dave247 I have a few ideas about who they are specifically... but after they decided to be a bunch of dicks about anyone here posting links to their site that shall not be named, they created an account here to spy, presumably. Lot of former 🌶 folks here... Lots of 🖕 🖕 🖕 🖕 🖕 for their informers.

      It's a public site, doesn't take much for someone to inform, lol. It's a bit like tattling on a billboard.

      That sounds a lot like calling out your Husband by doing this to his ride.

      cheating2_small.jpg

    • gjacobseG

      Bitmessage

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion p2p messaging encryption decentralized messaging bitmessage
      3
      2 Votes
      3 Posts
      913 Views
      travisdh1T

      I've heard of it, but never looked into it. If it's looking at every message on the line, it sounds like it could be block chain based.

    • gjacobseG

      Rescue computer with remote access

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion crashed computer screenconnect connectwise linux rescue remote rescue
      29
      1 Votes
      29 Posts
      3k Views
      travisdh1T

      @jaredbusch said in Rescue computer with remote access:

      I put fedora workstation on a usb, and live booted and installed l2tp dependencies with no issue.

      So installing iced tea should be fine.

      I've worked with lots of live sessions without persistence, and never had an issue installing additional software. Granted your limited to RAM as your total storage and system operation, and any additional software installed goes away on power off/reboot. It's odd that you're having trouble installing something unless it's requiring lots of large dependencies.

      Your game plan is sound. Maybe they'll learn the joys of good backups?

    • gjacobseG

      Foxconn snaps up Belkin

      Watching Ignoring Scheduled Pinned Locked Moved News foxconn iphone belkin linksys wemo
      13
      1 Votes
      13 Posts
      2k Views
      momurdaM

      @penguinwrangler Yes mine had a nice led screen on front with different views for bandwidth, wifi clients, time, etc. But it never got updates.

    • gjacobseG

      Server 2012: PS Get-ADGroupMember

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion 2012 2012 r2 windows server 2012 server 2012 r2 powershell
      26
      0 Votes
      26 Posts
      4k Views
      scottalanmillerS

      @obsolesce said in Server 2012: PS Get-ADGroupMember:

      I use a Linux server that is domain joined to see what groups a MS AD user is a member of. It's just way easier and faster.

      id [email protected]

      Done.

      I was just saying how ridiculously cumbersome this is because of Windows.

    • gjacobseG

      Server 2012 RDP: Logoff all disconnected sessions

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      7
      2 Votes
      7 Posts
      2k Views
      D

      Thanks for sharing the script, dafyre. Will give it a try, too.

    • gjacobseG

      O365; OWA: Send as permission

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion owa o365
      10
      1 Votes
      10 Posts
      1k Views
      EddieJenningsE

      @dbeato said in O365; OWA: Send as permission:

      @eddiejennings said in O365; OWA: Send as permission:

      @dbeato said in O365; OWA: Send as permission:

      It will never show up there, you need to add it manually the first time. Also do not setup FUll Mailbox Access with Send As, it causes huge issues.

      What issues have you seen? Full access to someone with SendAs isn't something I'd often configure, but I don't see the technical pitfall of it.

      The SendAs will fail to send since Outlook believes the mailbox is already on the Mailbox and will fail to send. This happens because Outlook has the two accounts on the same profile.

      I see.

    • gjacobseG

      Lightweight Windows OS

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      14
      0 Votes
      14 Posts
      2k Views
      H

      @gjacobse said in Lightweight Windows OS:

      Windorx

      Spend $100 and get a better a laptop.

      EeePC NetBook PC sucks, it doesn't even work well on XP.

    • gjacobseG

      Google Pixel 2 XL: Unable to setup Exchange email

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion pixel phone google pixel pixel 2 xl exchange o365
      6
      1 Votes
      6 Posts
      1k Views
      gjacobseG

      Outlook for the win..

      Thanks

    • gjacobseG

      Dell SmartByte: blocks connections

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion dell laptop dell laptop smartbyte vpn l2tp remote access remote
      2
      2 Votes
      2 Posts
      1k Views
      dbeatoD

      @scottalanmiller posted here too
      https://mangolassi.it/topic/16567/dell-machines-unable-to-vpn-due-to-smartbyte-bloatware

    • gjacobseG

      SodiumSuite: Filter pane

      Watching Ignoring Scheduled Pinned Locked Moved SodiumSuite @sodium @quixotic @linux
      18
      2 Votes
      18 Posts
      2k Views
      scottalanmillerS

      @wls-itguy said in SodiumSuite: Filter pane:

      @scottalanmiller said in SodiumSuite: Filter pane:

      @wls-itguy said in SodiumSuite: Filter pane:

      @scottalanmiller said in SodiumSuite: Filter pane:

      @krisleslie said in SodiumSuite: Filter pane:

      Wait a minute how can I use this "SODIUM SUITE" ????? I wanna be in the cool kid crowd.

      We are accepting no more users with Linode or Mac at this time 😉

      Hey! I resemble that remark.

      The upside is, you know how to find every possible installer problem 😉

      I just need to go through 5 days of chat conversation with you

      Haha, yeah.

    • gjacobseG

      ASUS: Zenphone 5

      Watching Ignoring Scheduled Pinned Locked Moved News
      2
      2 Votes
      2 Posts
      1k Views
      StrongBadS

      Has anyone even managed to get their hands on the ZenFone 4 yet?

    • gjacobseG

      It's Scott's Fault

      Watching Ignoring Scheduled Pinned Locked Moved Water Closet scott alan miller scottalanmiller sam sam on it
      11
      1 Votes
      11 Posts
      2k Views
      jt1001001J

      With a picture of a flaming fireball shot

    • 1
    • 2
    • 11
    • 12
    • 13
    • 14
    • 15
    • 35
    • 36
    • 13 / 36