Here's a PowerShell script to compare two Telegram exports and show any deleted media
I'm a huge data hoarder and hate storing stuff on the cloud so I regularly export my Telegram history, I got to thinking it'd be interesting to see if I could easily find any messages from previous exports that had since been deleted from current chats. I had a look at WinMerge which compares two directories but since Telegram exports media sequentially (Photo 1, Photo 2 etc.) none of the names match up and it's practically impossible to compare them.I'm fairly new to PowerShell so I thought I'd try and write something that compared two exports based on file hashes (which don't rely on the filename or date modified). It's a hilariously inefficient way of comparing two exports, but the result is a new folder with a copy of all the differences as well as a list of each media file saved to a text file.It's NOT recursive so you'd need to run this seperately for the "photos", "video_files" & voice_messages" folders. Just change the variables at the top and happy powershelling.
Submitted October 13, 2021 at 11:41PM by lieutenantcigarette
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7lcxi/heres_a_powershell_script_to_compare_two_telegram/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
I'm a huge data hoarder and hate storing stuff on the cloud so I regularly export my Telegram history, I got to thinking it'd be interesting to see if I could easily find any messages from previous exports that had since been deleted from current chats. I had a look at WinMerge which compares two directories but since Telegram exports media sequentially (Photo 1, Photo 2 etc.) none of the names match up and it's practically impossible to compare them.I'm fairly new to PowerShell so I thought I'd try and write something that compared two exports based on file hashes (which don't rely on the filename or date modified). It's a hilariously inefficient way of comparing two exports, but the result is a new folder with a copy of all the differences as well as a list of each media file saved to a text file.It's NOT recursive so you'd need to run this seperately for the "photos", "video_files" & voice_messages" folders. Just change the variables at the top and happy powershelling.
# Define the source folders, the differences are copied from oldexport into a directory of your choosing $oldexport = "C:\Users\yourusernamehere\Downloads\Telegram Desktop\exportfolder2\photos" $newexport = "C:\Users\yourusernamehere\Downloads\Telegram Desktop\exportfolder2\photos" $pathtosavedifferences = "D:\temp\video_files\" # Define any file exclusions $excluded = @("*thumb.jpg", "*.db") # Get hashes and paths of all files in the source directories and saves them to a CSV Get-FileHash -Algorithm MD5 -Path (Get-ChildItem "$oldexport\*.*" -Exclude $excluded -Recurse -force) | export-csv $env:temp\hashes-oldexport.csv Get-FileHash -Algorithm MD5 -Path (Get-ChildItem "$newexport\*.*" -Exclude $excluded -Recurse -force) | export-csv $env:temp\hashes-newexport.csv # Import the saved CSV files and skip the first row as that's just a weird heading which we don't need $File1 = Import-Csv -Path $env:temp\hashes-oldexport.csv | select -Skip 1 $File2 = Import-Csv -Path $env:temp\hashes-newexport.csv | select -Skip 1 #Compare both CSV files and save the differences to a new CSV file Compare-Object $File1 $File2 -Property Hash | Export-Csv -Path $env:temp\differences.csv -NoTypeInformation -Append # Retrieve the hashes from the differences CSV file $differences = Import-csv -Path $env:temp\differences.csv | select -ExpandProperty Hash # Use the different hashes to fetch the path of each different file, save it to a variable called "Paths" $Paths = Import-CSV $env:temp\hashes-oldexport.csv | select -Skip 1 | Where{$differences -match $_.Hash} | select -ExpandProperty Path # If the destination folder doesn't exist, create it if (!(Test-Path -path $pathtosavedifferences)) {New-Item $pathtosavedifferences -Type Directory} # Save differences to a text file in the destination folder $Paths | Out-File -FilePath "$pathtosavedifferences\Differences.txt" # Copy each different file to the destination folder foreach ($p in $paths) { $file = Split-Path $p -leaf Write-Host "Different file: $file" Copy-Item -Path "$oldexport\$file" -Destination "$pathtosavedifferences\$file" -Force } # Clean up and delete temporary files try { Remove-Item $env:temp\hashes-oldexport.csv Remove-Item $env:temp\hashes-newexport.csv Remove-Item $env:temp\differences.csv } catch { } Submitted October 13, 2021 at 11:41PM by lieutenantcigarette
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7lcxi/heres_a_powershell_script_to_compare_two_telegram/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Botfather hasn't worked for weeks.
I've been trying to create a Telegram bot now for like a month. I've submitted tickets as well. Clicking "Send Message" on /botfather does nothing at all.The console has an error that saysFailed to launch 'tg://resolve?domain=botfather' because the scheme does not have a registered handler.Does anyone know what's going on?
Submitted October 14, 2021 at 01:13AM by steezefries
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7n3y5/botfather_hasnt_worked_for_weeks/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
I've been trying to create a Telegram bot now for like a month. I've submitted tickets as well. Clicking "Send Message" on /botfather does nothing at all.The console has an error that saysFailed to launch 'tg://resolve?domain=botfather' because the scheme does not have a registered handler.Does anyone know what's going on?
Submitted October 14, 2021 at 01:13AM by steezefries
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7n3y5/botfather_hasnt_worked_for_weeks/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
question about deleting Telegram account
hello, sorry for bad englishlet’s say i have a telegram account with a specific phone number, let’s call it “phone number A”, and let’s say i have to switch my phone number to another one, “phone number B”.if i delete my telegram account linked to phone number A with the telegram web procedure, and then i give this phone number A to another person and then this person install telegram, can this person see old chats and groups and messages that I have personally sent BEFORE the account deleting, or does he start with a new fresh account without chats and groups and so all empty without being able to retrieve all the things sent before the deleting?
Submitted October 14, 2021 at 01:17AM by AnonimoPerOvviMotivi
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7n6cs/question_about_deleting_telegram_account/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
hello, sorry for bad englishlet’s say i have a telegram account with a specific phone number, let’s call it “phone number A”, and let’s say i have to switch my phone number to another one, “phone number B”.if i delete my telegram account linked to phone number A with the telegram web procedure, and then i give this phone number A to another person and then this person install telegram, can this person see old chats and groups and messages that I have personally sent BEFORE the account deleting, or does he start with a new fresh account without chats and groups and so all empty without being able to retrieve all the things sent before the deleting?
Submitted October 14, 2021 at 01:17AM by AnonimoPerOvviMotivi
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7n6cs/question_about_deleting_telegram_account/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
question regarding the Google playstore apk vs telegram website apk
So recently i found that telegram offers the app on its website too which is free from Google restrictions and stuff so if I decide to use that app will it be able to access bots which are banned and channels too ?
Submitted October 14, 2021 at 06:06AM by dodushu
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7s0y5/question_regarding_the_google_playstore_apk_vs/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
So recently i found that telegram offers the app on its website too which is free from Google restrictions and stuff so if I decide to use that app will it be able to access bots which are banned and channels too ?
Submitted October 14, 2021 at 06:06AM by dodushu
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7s0y5/question_regarding_the_google_playstore_apk_vs/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Can’t find someone even if I have their number saved?
Very confused. How is it possible for someone to use telegram without using their phone number ?no username . And when I try to look and check if they are active . It’s not showing . The person ended up messaging me first
Submitted October 14, 2021 at 06:23AM by Evening_Try7659
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7sa6s/cant_find_someone_even_if_i_have_their_number/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Very confused. How is it possible for someone to use telegram without using their phone number ?no username . And when I try to look and check if they are active . It’s not showing . The person ended up messaging me first
Submitted October 14, 2021 at 06:23AM by Evening_Try7659
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7sa6s/cant_find_someone_even_if_i_have_their_number/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Alternative ways to create animated stickers?
Hi,Is there any alternative way to create animated stickers than using Adobe AE? Any other software or app or anything? Or something to convert other animated files (JSON, APNG, GIF, etc) to TGS?
Submitted October 14, 2021 at 09:25AM by vihtla
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7upz2/alternative_ways_to_create_animated_stickers/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Hi,Is there any alternative way to create animated stickers than using Adobe AE? Any other software or app or anything? Or something to convert other animated files (JSON, APNG, GIF, etc) to TGS?
Submitted October 14, 2021 at 09:25AM by vihtla
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7upz2/alternative_ways_to_create_animated_stickers/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
long ago deleted contacts appear
I don't really get how this is happening.I've not had various people in my phone book for years. Yet telegram shows them? I've only just got telegram so how is this happening?This isn't even the same phone or contacts app that I used when I knew these people.Does this simply mean they still had me in their contacts?Shouldn't it be a two way set up?
Submitted October 14, 2021 at 10:20AM by obbzart
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7vdqa/long_ago_deleted_contacts_appear/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
I don't really get how this is happening.I've not had various people in my phone book for years. Yet telegram shows them? I've only just got telegram so how is this happening?This isn't even the same phone or contacts app that I used when I knew these people.Does this simply mean they still had me in their contacts?Shouldn't it be a two way set up?
Submitted October 14, 2021 at 10:20AM by obbzart
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7vdqa/long_ago_deleted_contacts_appear/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Group Owner Deleted the account
Owner of our group has deleted his account and there is no one in the group with full admin rights like owner, I have few queries regarding this, 1. will the group get deleted after a while or it'll remain the same? 2. Is it possible to transfer ownership?
Submitted October 14, 2021 at 10:10AM by Individual_Gene
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7v90v/group_owner_deleted_the_account/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Owner of our group has deleted his account and there is no one in the group with full admin rights like owner, I have few queries regarding this, 1. will the group get deleted after a while or it'll remain the same? 2. Is it possible to transfer ownership?
Submitted October 14, 2021 at 10:10AM by Individual_Gene
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7v90v/group_owner_deleted_the_account/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
How to download telegram stickers as svgs?
So sticker downloader bots will give them as compressed jpgs or pngs. How to download them as svgs
Submitted October 14, 2021 at 12:03PM by tfpZeroDay
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7wm1f/how_to_download_telegram_stickers_as_svgs/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
So sticker downloader bots will give them as compressed jpgs or pngs. How to download them as svgs
Submitted October 14, 2021 at 12:03PM by tfpZeroDay
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7wm1f/how_to_download_telegram_stickers_as_svgs/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Miss Kobayashi's Dragon Maid telegram stickers
https://redd.it/q47iz6
by @tmebackup via @r2tBot
https://t.me/addstickers/Tohrudmc666_by_stickersthiefbot
https://redd.it/q47iz6
by @tmebackup via @r2tBot
https://t.me/addstickers/Tohrudmc666_by_stickersthiefbot
Telegram
Tohru ( @Ali_DMC )
Free stickerpack with 66 stickers.
telegram showing my old username
Hi, I haven't used telegram since 2015, I reinstalled it now (I have the same phone number) and used a different name+username, yet, people still see me as the 2015 name. How can I change that?
Submitted October 14, 2021 at 01:47PM by RedDottos
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7y1e0/telegram_showing_my_old_username/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Hi, I haven't used telegram since 2015, I reinstalled it now (I have the same phone number) and used a different name+username, yet, people still see me as the 2015 name. How can I change that?
Submitted October 14, 2021 at 01:47PM by RedDottos
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7y1e0/telegram_showing_my_old_username/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Not able to view history
I am not able to view a group history before joining although others are able to, why is this happening? any solution?
Submitted October 14, 2021 at 03:38PM by Individual_Gene
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7zwvf/not_able_to_view_history/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
I am not able to view a group history before joining although others are able to, why is this happening? any solution?
Submitted October 14, 2021 at 03:38PM by Individual_Gene
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q7zwvf/not_able_to_view_history/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Where are Telegram's data centers ?
We have a geo ip block in place. Us ,mexico, Canada and some EU countries are allowed.Can't open web or log into client
Submitted October 14, 2021 at 05:04PM by CompleteLoss
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q81kg8/where_are_telegrams_data_centers/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
We have a geo ip block in place. Us ,mexico, Canada and some EU countries are allowed.Can't open web or log into client
Submitted October 14, 2021 at 05:04PM by CompleteLoss
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q81kg8/where_are_telegrams_data_centers/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Anyone using this python program for telegram-upload ??
https://github.com/Nekmo/telegram-upload
Submitted October 14, 2021 at 05:02PM by Kevin_Sinister
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q81j0i/anyone_using_this_python_program_for/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
https://github.com/Nekmo/telegram-upload
Submitted October 14, 2021 at 05:02PM by Kevin_Sinister
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q81j0i/anyone_using_this_python_program_for/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
[Q] Secret Chats storage
Hello everybody!My question is:Are Secret Chats indeed stored on endpoint devices only and nowhere else?Imagine you have Phone "A" and Phone "B" with a secret chat worth of 7 or 30 or 100 days (text, images, video) between them.Now, you put Phone "A" offline. And on the Phone "B" you clear the cache completely. (You dont delete the chat, you clear the cache with all media).Now if you start scrolling up on Phone "B" (backwards in time), will the media fail to load? (Because Phone "A" is offline)Or will it still get sucked up from the cloud?I don't have two phones right now, but I'd like to confirm or disprove it. Thanks!
Submitted October 14, 2021 at 05:48PM by GenericName9173
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q82fql/q_secret_chats_storage/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Hello everybody!My question is:Are Secret Chats indeed stored on endpoint devices only and nowhere else?Imagine you have Phone "A" and Phone "B" with a secret chat worth of 7 or 30 or 100 days (text, images, video) between them.Now, you put Phone "A" offline. And on the Phone "B" you clear the cache completely. (You dont delete the chat, you clear the cache with all media).Now if you start scrolling up on Phone "B" (backwards in time), will the media fail to load? (Because Phone "A" is offline)Or will it still get sucked up from the cloud?I don't have two phones right now, but I'd like to confirm or disprove it. Thanks!
Submitted October 14, 2021 at 05:48PM by GenericName9173
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q82fql/q_secret_chats_storage/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Telegram wrongly marking messages as read
Hey there.Been using Telegram since 2015.Last ...month or so? Telegram (Telegram Desktop 3.1.8 right now but I'm sure the previous update did it too) has been doing a thing where it will mark chats I haven't read as having been read. While I have the same account on my phone, I close Telegram there the second I don't need it.I've witnessed 2 chats next to each other - I clicked on one to actually read it, and then a few seconds later, the unread chat below it marked itself as read! It wasn't a simoultaneous thing, if this helps any.The phone has Android 11 OS on it if that helps any - can give you exact device model if needed.Anyone else experience this lately? Finding - and often - messages that it *says* you read but you haven't read cuz it marks them that way?!
Submitted October 14, 2021 at 06:41PM by ChillNaga
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q83hri/telegram_wrongly_marking_messages_as_read/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Hey there.Been using Telegram since 2015.Last ...month or so? Telegram (Telegram Desktop 3.1.8 right now but I'm sure the previous update did it too) has been doing a thing where it will mark chats I haven't read as having been read. While I have the same account on my phone, I close Telegram there the second I don't need it.I've witnessed 2 chats next to each other - I clicked on one to actually read it, and then a few seconds later, the unread chat below it marked itself as read! It wasn't a simoultaneous thing, if this helps any.The phone has Android 11 OS on it if that helps any - can give you exact device model if needed.Anyone else experience this lately? Finding - and often - messages that it *says* you read but you haven't read cuz it marks them that way?!
Submitted October 14, 2021 at 06:41PM by ChillNaga
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q83hri/telegram_wrongly_marking_messages_as_read/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Telegram bot to notify us when a particular person messages on a group
Hi,
Submitted October 14, 2021 at 06:21PM by Dgreenfox
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q833hh/telegram_bot_to_notify_us_when_a_particular/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Hi,
I'm member of a particular telegram group as part of a project. The group always gets flooded with messages so I have turned notifications off for the group. However I wish to get notified when a few particular people messages on the group. Is there any bot or some other tools we can make use of for this?Thanks
Submitted October 14, 2021 at 06:21PM by Dgreenfox
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q833hh/telegram_bot_to_notify_us_when_a_particular/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
How keep the shtiload of cr ypto spam out of my public group?
It's really a pest. I tried @littleGuardianBot but it does'nt do anything. What are other big groups using?
Submitted October 14, 2021 at 10:42PM by Qipeki
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q88cxz/how_keep_the_shtiload_of_cr_ypto_spam_out_of_my/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
It's really a pest. I tried @littleGuardianBot but it does'nt do anything. What are other big groups using?
Submitted October 14, 2021 at 10:42PM by Qipeki
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q88cxz/how_keep_the_shtiload_of_cr_ypto_spam_out_of_my/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Telegram Sound Issue
Videos won't play any sound, even though everything else does on the pc vers. of telegram
Submitted October 14, 2021 at 10:41PM by Cheeseoftheabyss
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q88c5k/telegram_sound_issue/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Videos won't play any sound, even though everything else does on the pc vers. of telegram
Submitted October 14, 2021 at 10:41PM by Cheeseoftheabyss
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q88c5k/telegram_sound_issue/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Zuck using "lead" instead of "catching up" to the almighty telegram 🤣🤣🤣
https://i.redd.it/gjdljz8tuht71.jpg
Submitted October 15, 2021 at 12:42AM by AchwaqKhalid
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q8ah4a/zuck_using_lead_instead_of_catching_up_to_the/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
https://i.redd.it/gjdljz8tuht71.jpg
Submitted October 15, 2021 at 12:42AM by AchwaqKhalid
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q8ah4a/zuck_using_lead_instead_of_catching_up_to_the/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Desktop online status
Hello. This might be a very silly question, but I am very curious, does the desktop version show you online all the time, regardless if it is on background or not, like WhatsApp does?
Submitted October 15, 2021 at 12:32AM by solenhav
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q8a9p5/desktop_online_status/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme
Hello. This might be a very silly question, but I am very curious, does the desktop version show you online all the time, regardless if it is on background or not, like WhatsApp does?
Submitted October 15, 2021 at 12:32AM by solenhav
on r/Telegram via https://www.reddit.com/r/Telegram/comments/q8a9p5/desktop_online_status/?utm_source=ifttt Backup by @tmebackup A @rtptme project - Other backups: http://pixly.link/tme