• 0 Votes
    22 Posts
    4k Views
    DashrenderD

    @Jason said in Lanier LD117 scan uploads are slow when NetBIOS disabled on remote share:

    This is not a NetBIOS issue then..

    While you might have assumed I said that it was, The symptom only showed itself after this change was made. Before the user went on vacation and while she was gone, the only change that was made was that NetBIOS was disabled, and DNS added to the printer along with putting FQDN in the SMB paths for the fileshare location.

  • Let's all get blindsided together!

    53
    2 Votes
    53 Posts
    8k Views
    DashrenderD

    @Jason said in Let's all get blindsided together!:

    It's an MSI which can be natively deployed with a GPO

    Thanks bro - that was 8 years ago - not helping me a lot now 🙂

  • SharePoint Wiki examples

    19
    0 Votes
    19 Posts
    14k Views
    thwrT

    @scottalanmiller said in SharePoint Wiki examples:

    @thwr said in SharePoint Wiki examples:

    @scottalanmiller said in SharePoint Wiki examples:

    @thwr said in SharePoint Wiki examples:

    @fuznutz04 said in SharePoint Wiki examples:

    I like the ability of a OneNote document, hosted in SharePoint, but don't like the lack of organization of it. I like Wiki's for documentation, because you can browse the wiki, copy/paste to/from it without accidentally deleting content. Once multiple people have their hands on a shared OneNote, in my opinion, it just becomes to easy to accidentally delete something.

    That's one of the reasons why I'm looking for a 100% client-side wiki that just uses HTML5/JS. Just place that into a SharePoint doclib/dropbox/whatever

    Not a bad idea.

    Plus we don't need any proprietary software like OneNote, just a modern browser. Don't get me wrong, OneNote is a great tool, but I would like to have a wiki for my core documentation / admin KB.

    But no tool found thus far?

    Still checking available projects.

  • Hacking attempt

    6
    1 Votes
    6 Posts
    929 Views
    J

    @dafyre said in Hacking attempt:

    What kind of info do you have on the attack? Or do you just know that you were being attacked?

    I Can't comment on that.

  • Edge switches VS Ubiquiti switches VS other

    16
    1 Votes
    16 Posts
    4k Views
    DashrenderD

    For a super simple no VPNs network, the USG works great, pretty straight forward and has some nice pictograms in the Controller.

    The issue I ran into was a VPN tunnel between two endpoints that both had static IPs. This just didn't work. A few people have posted their work arounds on my UBNT thread about putting the IP into the JSON config file and not using the GUI to enter the static IPs and have it work.

  • HPE Engineers still suggesting RAID5 for deployments

    31
    0 Votes
    31 Posts
    2k Views
    K

    Absolutely 🙂

  • VoIP.ms inbound issues today

    24
    1 Votes
    24 Posts
    4k Views
    travisdh1T

    @DustinB3403 said in VoIP.ms inbound issues today:

    @JaredBusch So just half of the US is reporting outages.

    Wow someone at Level 3 is gonna get murdered over this.

    I spot an RGE!

  • CenturyLink, you so fancy!

    31
    3 Votes
    31 Posts
    3k Views
    zuphzuphZ

    The door to door salesman normally don't even work for the ISP they work in conjunction with the ISP in order to sell contracted services at higher rates. These guys work purely off commission in most cases so they're pretty good liars as well. CenturyLink is the old qwest... they weren't good either. It's really shitty service here in Denver with abnormally high downtime and poor speeds. They do the same thing the cable providers do and over stuff trunks.

  • RDS 3rd party SSL cert

    Unsolved
    3
    0 Votes
    3 Posts
    376 Views
    Mike DavisM

    Here's the powershell script that I used on the last one that I built that seemed to work:
    [CmdletBinding()]
    Param(
    [Parameter(Mandatory=$True,HelpMessage="Specifies the FQDN that clients will use when connecting to the deployment.",Position=1)]
    [string]$ClientAccessName,
    [Parameter(Mandatory=$False,HelpMessage="Specifies the RD Connection Broker server for the deployment.",Position=2)]
    [string]$ConnectionBroker="localhost"
    )

    $Host.UI.RawUI.BackgroundColor = "Black"; Clear-Host

    $CurrentUser = New-Object Security.Principal.WindowsPrincipal $([Security.Principal.WindowsIdentity]::GetCurrent())
    If (($CurrentUser.IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator)) -eq $false)
    {
    $ArgumentList = "-noprofile -noexit -file "{0}" -ClientAccessName $ClientAccessName -ConnectionBroker $ConnectionBroker"
    Start-Process powershell.exe -Verb RunAs -ArgumentList ($ArgumentList -f ($MyInvocation.MyCommand.Definition))
    Exit
    }

    Function Get-RDMSDeployStringProperty ([string]$PropertyName, [string]$BrokerName)
    {
    $ret = iwmi -Class "Win32_RDMSDeploymentSettings" -Namespace "root\CIMV2\rdms" -Name "GetStringProperty" -ArgumentList @($PropertyName) -ComputerName $BrokerName
    -Authentication PacketPrivacy -ErrorAction Stop
    Return $ret.Value
    }

    Try
    {
    If ((Get-RDMSDeployStringProperty "DatabaseConnectionString" $ConnectionBroker) -eq $null) {$BrokerInHAMode = $False} Else {$BrokerInHAMode = $True}
    }
    Catch [System.Management.ManagementException]
    {
    If ($Error[0].Exception.ErrorCode -eq "InvalidNamespace")
    {
    If ($ConnectionBroker -eq "localhost")
    {
    Write-Host "n Set-RDPublishedName Failed.nn The local machine does not appear to be a Connection Broker. Please specify then FQDN of the RD Connection Broker using the -ConnectionBroker parameter.n" -ForegroundColor Red } Else { Write-Host "n Set-RDPublishedName Failed.nn $ConnectionBroker does not appear to be a Connection Broker. Please make sure you have n specified the correct FQDN for your RD Connection Broker server.n" -ForegroundColor Red
    }
    }
    Else
    {
    $Error[0]
    }
    Exit
    }

    $OldClientAccessName = Get-RDMSDeployStringProperty "DeploymentRedirectorServer" $ConnectionBroker

    If ($BrokerInHAMode.Value)
    {
    Import-Module RemoteDesktop
    Set-RDClientAccessName -ConnectionBroker $ConnectionBroker -ClientAccessName $ClientAccessName
    }
    Else
    {
    $return = iwmi -Class "Win32_RDMSDeploymentSettings" -Namespace "root\CIMV2\rdms" -Name "SetStringProperty" -ArgumentList @("DeploymentRedirectorServer",$ClientAccessName) -ComputerName $ConnectionBroker
    -Authentication PacketPrivacy -ErrorAction Stop
    }

    $CurrentClientAccessName = Get-RDMSDeployStringProperty "DeploymentRedirectorServer" $ConnectionBroker

    If ($CurrentClientAccessName -eq $ClientAccessName)
    {
    Write-Host "n Set-RDPublishedName Succeeded." -ForegroundColor Green Write-Host "n Old name: $OldClientAccessNamenn New name: $CurrentClientAccessName"
    Write-Host "n If you are currently logged on to RD Web Access, please refresh the page for the change to take effect.n"
    }
    Else
    {
    Write-Host "n Set-RDPublishedName Failed.n" -ForegroundColor Red
    }

  • IT opportunities from Brexit

    3
    0 Votes
    3 Posts
    532 Views
    StrongBadS

    My guess would be a lot of it would be general IT work as IT departments have to separate to focus on the two regions. Businesses that used to use unified IT between the EU and UK will need to have local workers in both regions in some cases.

  • WMI Filtering

    4
    0 Votes
    4 Posts
    901 Views
    J

    @Jason said in WMI Filtering:

    found this: https://social.technet.microsoft.com/Forums/systemcenter/en-US/5d549159-554b-4e64-bba6-aefebe475494/osd-skip-a-task-sequence-step-by-query?forum=configmgrgeneral

    Yeah, the NOT is wrong, WQL doesn't contain a "not like" operator but you can move the not to the beginning of the condition to negate its value. Thus, this will work select * from Win32_computersystem where not (Name like "%W" or Name like "%W0[1-8]")

    Worked like a charm

  • Edge Router Lite

    4
    0 Votes
    4 Posts
    670 Views
    JaredBuschJ

    Looks like this is all you can do via the VyOS CLI.

    anything else will require you to drop to shell with su -i

    jbusch@jared# set interfaces ethernet eth0 address description disable ip mtu speed bandwidth dhcp-options disable-link-detect ipv6 poe traffic-policy bond-group dhcpv6-options duplex mac pppoe vif bridge-group dhcpv6-pd firewall mirror redirect vrrp [edit] jbusch@jared#
  • Installing XiVO on Scale

    7
    4 Votes
    7 Posts
    3k Views
    JaredBuschJ

    @Dashrender said in Installing XiVO on Scale:

    @scottalanmiller said in Installing XiVO on Scale:

    @Dashrender said in Installing XiVO on Scale:

    @scottalanmiller said in Installing XiVO on Scale:

    0_1475526986064_Screenshot from 2016-10-03 13-33-00.png

    I don't understand what it's asking - Numbers internal start/end Numbers interval start/end?

    Yeah, it's is a multi-tenant system so it needs info about individual organizations that will be handled by the system. Threw me too.

    OK well now I'm even more lost. Internal Calls context I took to mean the extensions of the phones in your facility - OK pretty straight forward, you're allowing for extensions 1000-2000, but what are InCalls Context? I have no idea what that even means?

    Inbound calls and outbound calls respectively.

    Context is an Asterisk term.

  • Thumbtack - what a ripoff

    8
    0 Votes
    8 Posts
    2k Views
    prcssupportP

    @BBigford said in Thumbtack - what a ripoff:

    You're basically paying $3 every time you quote someone, to which you may never see a return.

    If a client is sitting on 10 quotes, Thumbtack makes $30 on that quote.

    There are times where I don't have to pay at all to communicate with a customer due to a lack of pros in their area.

  • sVirt and KVM

    2
    4 Votes
    2 Posts
    850 Views
    travisdh1T

    Good information, always like to see more about selinux.

  • Windows URL ACL

    Unsolved
    5
    2 Votes
    5 Posts
    2k Views
    thwrT

    @Dashrender said in Windows URL ACL:

    What OS?

    Anything > Vista I guess

    Currently testing on Win7 and Win10

  • Let's Encrypt stats

    7
    3 Votes
    7 Posts
    2k Views
    dafyreD

    @scottalanmiller said in Let's Encrypt stats:

    @Jason said in Let's Encrypt stats:

    I'm guessing a lot of kids/teens and college age are using let's encrpyt hence the .ninja

    I'm confused, aren't all those domains only used by ninjas?

    Go Ninja, Go Ninja, Go!

  • 0 Votes
    5 Posts
    2k Views
    scottalanmillerS

    And if vSphere doesn't show anything, look in the out of band management as well. That's ILO, DRAC, IPMI or whatever it is called on your system.

  • EMC VMAX

    3
    1 Votes
    3 Posts
    792 Views
    scottalanmillerS

    I think that DataCore SANSymphony is probably the tool that you are looking for.

  • Apache Redirect IP Address

    10
    0 Votes
    10 Posts
    1k Views
    AlyRagabA

    it is Done now and working very good:

    RewriteEngine On

    RewriteRule ^/ibclient$ https://remote_ip_address:port [R,L]

    Thanks All 🙂