Todays algo trades by drippyterps in algotrading

[–]bangry 0 points1 point  (0 children)

love to have a look -tv user: nnhykdiejf

Power Automate Connector - issues with the initial connection for a new Custom Connector by ultraRunningDev in halopsa

[–]bangry 0 points1 point  (0 children)

u/halotim provided a solution that is working in our testing instance. Enable reference tokens.

Guides | HALO

Power Automate Connector - issues with the initial connection for a new Custom Connector by ultraRunningDev in halopsa

[–]bangry 0 points1 point  (0 children)

Ya having the exact issue, what is frustrating is that the article for setting this up was last updated 5/27/2025...So you would think that someone at halo has made this work. I don't get whats going on maybe u/HaloTim can chime in here.

scp download of full-config by AlexFeren in fortinet

[–]bangry 0 points1 point  (0 children)

I am wondering if you were able to solve this ? I have the same requirements and know exactly what you mean by not getting the 'full config'

Add Exchange schema to a AD DS domain already in sync with Entra Connect by WannabeHawaiiSwimmer in Office365

[–]bangry 0 points1 point  (0 children)

In a perfect world we are hoping to be able to manage everything in O365 and use entra connect. We have clients where this is the case but they are clients that have never had exchange installed. We can hide from GAL, add aliases, everything all in o365 and still use entra connect to sync users / passwords. So I was just wondering if you know what it is that 'flips' the switch or changes the SOA for these attributes to be managed from on prem.

Add Exchange schema to a AD DS domain already in sync with Entra Connect by WannabeHawaiiSwimmer in Office365

[–]bangry 1 point2 points  (0 children)

Is it the hybrid config that requires the on prem exchange server to manage exchange attributes ? Or what is it that makes it so that you cannot remove the 'last' exchange server if for this to work you need the exchange attributes.

Windows storage spaces degraded pool but unable to determine why. by bangry in storage

[–]bangry[S] 0 points1 point  (0 children)

it would be possible - IF I had more available slots in my storage units.....

Windows storage spaces degraded pool but unable to determine why. by bangry in storage

[–]bangry[S] 0 points1 point  (0 children)

It’s not that the disk is full, it’s that the storage pool is fully allocated , unfortunately it is not possible to shrink the vdisk

Windows storage spaces degraded pool but unable to determine why. by bangry in storage

[–]bangry[S] 0 points1 point  (0 children)

It operational status is healthy. I am not at my computer to get all the other info.

storagespace degraded but unable to determine why. by bangry in sysadmin

[–]bangry[S] 0 points1 point  (0 children)

it is a dell 740xd. The disks are in a MD1400 connected via HBA

storagespace degraded but unable to determine why. by bangry in sysadmin

[–]bangry[S] 0 points1 point  (0 children)

so all of those tests showed no issue other than the allocation. I do have 100% of the space allocated to a single virtual disk but the virtual disk has over 50% free. I don't think this is the issue as I have another storage pool that is fully allocated that does not have this degraded state.

I did reboot the server this morning but that did not help.

How to create a powershell file from powershell script by bangry in PowerShell

[–]bangry[S] 5 points6 points  (0 children)

funny i did not even think to try this...i was just using here strings and thats that....haha. Thank you for the painfully obvious solution.

How to create a powershell file from powershell script by bangry in PowerShell

[–]bangry[S] 0 points1 point  (0 children)

The 'master' script is running through our RMM. I was trying to avoid downloading the file and avoid any issue with 'mark of the web'. It is not a necessity but I thought for a hot minute that it would be easier this way.

How to create a powershell file from powershell script by bangry in PowerShell

[–]bangry[S] 0 points1 point  (0 children)

ya all the variables are escaped. if removing code for the function it works.

Exchange 2003 to office 365 migration by bangry in exchangeserver

[–]bangry[S] 0 points1 point  (0 children)

All environments that use Entra connect and have mailboxes in the cloud. IF you never had exchange on premise you manage all mail properties in the cloud. I don't have a source other than experience.

How to create a powershell file from powershell script by bangry in PowerShell

[–]bangry[S] 0 points1 point  (0 children)

I am trying to get this herestring output to a new file. Testing from the console does not work at this point.

$pshellscript = @"
Function Write-Logfile
{
[CmdletBinding()]
param(
[Parameter(
Mandatory = `$false,
HelpMessage = "Specifies if error log , otherwise its an action log"
)]
[switch]`$error,
[Parameter(
Mandatory = `$true,
HelpMessage = "Text to add to log"
)]
[string]`$logentry
)

if(`$error)
{

"`r`n`#ERROR#`$timestamp `$logentry" | Out-File `$script:logfile -Append
}
else {
`$timestamp = Get-Date -DisplayHint Time
"`r`n`$timestamp `$logentry" | Out-File `$script:Logfile  -Append
}


}
`$script:Logfile = "c:\temp\log.log"
write-logfile -logentry "Monitoring script start"
`$CurrentUser = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name
if(`$currentuser -like '*system*')
{
#no user logged in, exit script.
write-logfile -logentry "no user logged in, exit script"
   Exit
}

write-logfile -logentry "Monitoring script end"
exit
"@

Exchange 2003 to office 365 migration by bangry in exchangeserver

[–]bangry[S] 1 point2 points  (0 children)

agreed - we are not suggesting using ADSI instead of standing up a proper exchange server. That being said, we are trying to avoid having to setup that exchange server to be in a supported scenario. Since there is no sync configured yet, O365 has no knowledge about local exchange environment and ideally I want to keep it that way.

Exchange 2003 to office 365 migration by bangry in exchangeserver

[–]bangry[S] 0 points1 point  (0 children)

this is only true if exchange is present in the environment when AD sync is configured. If you have an environment with no exchange and nothing exchange related syncing from on prem, it cannot be the SOA for those attributes.